From c1a894c21d53188f5326d72a58995a33cdf19d25 Mon Sep 17 00:00:00 2001 From: Chris Mackey Date: Wed, 15 Apr 2020 00:23:51 -0400 Subject: [PATCH] feat(samples): Add JSON samples for radiance (#77) This commit adds sample JSONs for modifiers, ModidierSets, and for Models with radiance properties. The only tests that it updates are the Model ones, which should pass if @saeranv documents the radiance properties correctly. I leave the writing of tests for modifiers and the ModifierSets to @saeranv . --- honeybee_schema/energy/material.py | 8 +- .../constructionset_complete.json | 514 +- .../constructionset_partial_exterior.json | 172 +- .../model_complete_multi_zone_office.json | 1104 +- .../model_complete_multiroom_radiance.json | 1890 + .../model/model_complete_office_floor.json | 1092 +- .../model/model_complete_patient_room.json | 1004 +- .../model_complete_single_zone_office.json | 1402 +- samples/model/model_complete_user_data.json | 1118 +- .../model/model_energy_detailed_loads.json | 1002 +- .../model/model_energy_fixed_interval.json | 36714 +++---- samples/model/model_energy_no_program.json | 362 +- .../model/model_energy_properties_office.json | 1002 +- samples/model/model_energy_shoe_box.json | 312 +- samples/modifier/modifier_bsdf_klemsfull.json | 16 + .../modifier/modifier_glass_air_boundary.json | 12 + ...odifier_glass_generic_exterior_window.json | 12 + samples/modifier/modifier_glow_white.json | 12 + .../modifier_light_green_spotlight.json | 11 + samples/modifier/modifier_plastic_black.json | 13 + .../modifier_plastic_generic_ceiling.json | 13 + .../modifier_plastic_generic_wall.json | 13 + .../modifier/modifier_trans_tree_foliage.json | 15 + .../modifierset_abridged_complete.json | 40 + ...modifierset_abridged_partial_exterior.json | 40 + .../modifier_set/modifierset_complete.json | 249 + .../modifierset_partial_exterior.json | 76 + .../schedule_fixedinterval_random_annual.json | 17258 ++-- scripts/bsdf/klemsfull.xml | 84856 ++++++++++++++++ scripts/sample_model.py | 41 + scripts/sample_modifier.py | 84 + scripts/sample_modifierset.py | 51 + tests/test_model.py | 5 + 33 files changed, 119024 insertions(+), 31489 deletions(-) create mode 100644 samples/model/model_complete_multiroom_radiance.json create mode 100644 samples/modifier/modifier_bsdf_klemsfull.json create mode 100644 samples/modifier/modifier_glass_air_boundary.json create mode 100644 samples/modifier/modifier_glass_generic_exterior_window.json create mode 100644 samples/modifier/modifier_glow_white.json create mode 100644 samples/modifier/modifier_light_green_spotlight.json create mode 100644 samples/modifier/modifier_plastic_black.json create mode 100644 samples/modifier/modifier_plastic_generic_ceiling.json create mode 100644 samples/modifier/modifier_plastic_generic_wall.json create mode 100644 samples/modifier/modifier_trans_tree_foliage.json create mode 100644 samples/modifier_set/modifierset_abridged_complete.json create mode 100644 samples/modifier_set/modifierset_abridged_partial_exterior.json create mode 100644 samples/modifier_set/modifierset_complete.json create mode 100644 samples/modifier_set/modifierset_partial_exterior.json create mode 100644 scripts/bsdf/klemsfull.xml create mode 100644 scripts/sample_modifier.py create mode 100644 scripts/sample_modifierset.py diff --git a/honeybee_schema/energy/material.py b/honeybee_schema/energy/material.py index 4f2b652..6529a19 100644 --- a/honeybee_schema/energy/material.py +++ b/honeybee_schema/energy/material.py @@ -528,16 +528,10 @@ class EnergyWindowMaterialShade (IDdEnergyBaseModel): class SlatOrientation (str, Enum): horizontal = 'Horizontal' vertical = 'Vertical' - description = 'Choices include Horizontal and Vertical. Horizontal means the ' \ - 'slats are parallel to the X-axis of the window. Vertical means the slats ' \ - 'are parallel to the Y-axis of the window.' class EnergyWindowMaterialBlind(IDdEnergyBaseModel): - """Window blind properties. - - Window blind properties consist of flat, equally-spaced slats. - """ + """Window blind material consisting of flat, equally-spaced slats.""" type: constr(regex='^EnergyWindowMaterialBlind$') = 'EnergyWindowMaterialBlind' diff --git a/samples/construction_set/constructionset_complete.json b/samples/construction_set/constructionset_complete.json index 6795efe..eeb11f7 100644 --- a/samples/construction_set/constructionset_complete.json +++ b/samples/construction_set/constructionset_complete.json @@ -26,18 +26,6 @@ "solar_absorptance": 0.7, "visible_absorptance": 0.7 }, - { - "type": "EnergyMaterial", - "identifier": "Generic Brick", - "roughness": "MediumRough", - "thickness": 0.1, - "conductivity": 0.9, - "density": 1920.0, - "specific_heat": 790.0, - "thermal_absorptance": 0.9, - "solar_absorptance": 0.65, - "visible_absorptance": 0.65 - }, { "type": "EnergyMaterial", "identifier": "Generic Gypsum Board", @@ -50,6 +38,18 @@ "solar_absorptance": 0.5, "visible_absorptance": 0.5 }, + { + "type": "EnergyMaterial", + "identifier": "Generic 50mm Insulation", + "roughness": "MediumRough", + "thickness": 0.05, + "conductivity": 0.03, + "density": 43.0, + "specific_heat": 1210.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 + }, { "type": "EnergyMaterial", "identifier": "Generic LW Concrete", @@ -64,15 +64,15 @@ }, { "type": "EnergyMaterial", - "identifier": "Generic 50mm Insulation", + "identifier": "Generic Brick", "roughness": "MediumRough", - "thickness": 0.05, - "conductivity": 0.03, - "density": 43.0, - "specific_heat": 1210.0, + "thickness": 0.1, + "conductivity": 0.9, + "density": 1920.0, + "specific_heat": 790.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 + "solar_absorptance": 0.65, + "visible_absorptance": 0.65 } ] }, @@ -99,18 +99,6 @@ "solar_absorptance": 0.7, "visible_absorptance": 0.7 }, - { - "type": "EnergyMaterial", - "identifier": "Generic Brick", - "roughness": "MediumRough", - "thickness": 0.1, - "conductivity": 0.9, - "density": 1920.0, - "specific_heat": 790.0, - "thermal_absorptance": 0.9, - "solar_absorptance": 0.65, - "visible_absorptance": 0.65 - }, { "type": "EnergyMaterial", "identifier": "Generic Gypsum Board", @@ -123,6 +111,18 @@ "solar_absorptance": 0.5, "visible_absorptance": 0.5 }, + { + "type": "EnergyMaterial", + "identifier": "Generic 50mm Insulation", + "roughness": "MediumRough", + "thickness": 0.05, + "conductivity": 0.03, + "density": 43.0, + "specific_heat": 1210.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 + }, { "type": "EnergyMaterial", "identifier": "Generic LW Concrete", @@ -137,15 +137,15 @@ }, { "type": "EnergyMaterial", - "identifier": "Generic 50mm Insulation", + "identifier": "Generic Brick", "roughness": "MediumRough", - "thickness": 0.05, - "conductivity": 0.03, - "density": 43.0, - "specific_heat": 1210.0, + "thickness": 0.1, + "conductivity": 0.9, + "density": 1920.0, + "specific_heat": 790.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 + "solar_absorptance": 0.65, + "visible_absorptance": 0.65 } ] }, @@ -172,18 +172,6 @@ "solar_absorptance": 0.7, "visible_absorptance": 0.7 }, - { - "type": "EnergyMaterial", - "identifier": "Generic Brick", - "roughness": "MediumRough", - "thickness": 0.1, - "conductivity": 0.9, - "density": 1920.0, - "specific_heat": 790.0, - "thermal_absorptance": 0.9, - "solar_absorptance": 0.65, - "visible_absorptance": 0.65 - }, { "type": "EnergyMaterial", "identifier": "Generic Gypsum Board", @@ -196,6 +184,18 @@ "solar_absorptance": 0.5, "visible_absorptance": 0.5 }, + { + "type": "EnergyMaterial", + "identifier": "Generic 50mm Insulation", + "roughness": "MediumRough", + "thickness": 0.05, + "conductivity": 0.03, + "density": 43.0, + "specific_heat": 1210.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 + }, { "type": "EnergyMaterial", "identifier": "Generic LW Concrete", @@ -210,15 +210,15 @@ }, { "type": "EnergyMaterial", - "identifier": "Generic 50mm Insulation", + "identifier": "Generic Brick", "roughness": "MediumRough", - "thickness": 0.05, - "conductivity": 0.03, - "density": 43.0, - "specific_heat": 1210.0, + "thickness": 0.1, + "conductivity": 0.9, + "density": 1920.0, + "specific_heat": 790.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 + "solar_absorptance": 0.65, + "visible_absorptance": 0.65 } ] } @@ -237,15 +237,15 @@ "materials": [ { "type": "EnergyMaterial", - "identifier": "Generic Painted Metal", + "identifier": "Generic Ceiling Air Gap", "roughness": "Smooth", - "thickness": 0.0015, - "conductivity": 45.0, - "density": 7690.0, - "specific_heat": 410.0, + "thickness": 0.1, + "conductivity": 0.556, + "density": 1.28, + "specific_heat": 1000.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.5, - "visible_absorptance": 0.5 + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 }, { "type": "EnergyMaterial", @@ -273,15 +273,15 @@ }, { "type": "EnergyMaterial", - "identifier": "Generic Ceiling Air Gap", + "identifier": "Generic Painted Metal", "roughness": "Smooth", - "thickness": 0.1, - "conductivity": 0.556, - "density": 1.28, - "specific_heat": 1000.0, + "thickness": 0.0015, + "conductivity": 45.0, + "density": 7690.0, + "specific_heat": 410.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 + "solar_absorptance": 0.5, + "visible_absorptance": 0.5 } ] }, @@ -297,15 +297,15 @@ "materials": [ { "type": "EnergyMaterial", - "identifier": "Generic Painted Metal", + "identifier": "Generic Ceiling Air Gap", "roughness": "Smooth", - "thickness": 0.0015, - "conductivity": 45.0, - "density": 7690.0, - "specific_heat": 410.0, + "thickness": 0.1, + "conductivity": 0.556, + "density": 1.28, + "specific_heat": 1000.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.5, - "visible_absorptance": 0.5 + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 }, { "type": "EnergyMaterial", @@ -333,15 +333,15 @@ }, { "type": "EnergyMaterial", - "identifier": "Generic Ceiling Air Gap", + "identifier": "Generic Painted Metal", "roughness": "Smooth", - "thickness": 0.1, - "conductivity": 0.556, - "density": 1.28, - "specific_heat": 1000.0, + "thickness": 0.0015, + "conductivity": 45.0, + "density": 7690.0, + "specific_heat": 410.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 + "solar_absorptance": 0.5, + "visible_absorptance": 0.5 } ] }, @@ -357,15 +357,15 @@ "materials": [ { "type": "EnergyMaterial", - "identifier": "Generic Painted Metal", + "identifier": "Generic Ceiling Air Gap", "roughness": "Smooth", - "thickness": 0.0015, - "conductivity": 45.0, - "density": 7690.0, - "specific_heat": 410.0, + "thickness": 0.1, + "conductivity": 0.556, + "density": 1.28, + "specific_heat": 1000.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.5, - "visible_absorptance": 0.5 + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 }, { "type": "EnergyMaterial", @@ -393,15 +393,15 @@ }, { "type": "EnergyMaterial", - "identifier": "Generic Ceiling Air Gap", + "identifier": "Generic Painted Metal", "roughness": "Smooth", - "thickness": 0.1, - "conductivity": 0.556, - "density": 1.28, - "specific_heat": 1000.0, + "thickness": 0.0015, + "conductivity": 45.0, + "density": 7690.0, + "specific_heat": 410.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 + "solar_absorptance": 0.5, + "visible_absorptance": 0.5 } ] } @@ -419,6 +419,18 @@ "Generic Acoustic Tile" ], "materials": [ + { + "type": "EnergyMaterial", + "identifier": "Generic Acoustic Tile", + "roughness": "MediumSmooth", + "thickness": 0.02, + "conductivity": 0.06, + "density": 368.0, + "specific_heat": 590.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.2, + "visible_absorptance": 0.2 + }, { "type": "EnergyMaterial", "identifier": "Generic Roof Membrane", @@ -443,30 +455,6 @@ "solar_absorptance": 0.7, "visible_absorptance": 0.7 }, - { - "type": "EnergyMaterial", - "identifier": "Generic LW Concrete", - "roughness": "MediumRough", - "thickness": 0.1, - "conductivity": 0.53, - "density": 1280.0, - "specific_heat": 840.0, - "thermal_absorptance": 0.9, - "solar_absorptance": 0.8, - "visible_absorptance": 0.8 - }, - { - "type": "EnergyMaterial", - "identifier": "Generic Acoustic Tile", - "roughness": "MediumSmooth", - "thickness": 0.02, - "conductivity": 0.06, - "density": 368.0, - "specific_heat": 590.0, - "thermal_absorptance": 0.9, - "solar_absorptance": 0.2, - "visible_absorptance": 0.2 - }, { "type": "EnergyMaterial", "identifier": "Generic 50mm Insulation", @@ -478,6 +466,18 @@ "thermal_absorptance": 0.9, "solar_absorptance": 0.7, "visible_absorptance": 0.7 + }, + { + "type": "EnergyMaterial", + "identifier": "Generic LW Concrete", + "roughness": "MediumRough", + "thickness": 0.1, + "conductivity": 0.53, + "density": 1280.0, + "specific_heat": 840.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.8, + "visible_absorptance": 0.8 } ] }, @@ -492,6 +492,18 @@ "Generic Acoustic Tile" ], "materials": [ + { + "type": "EnergyMaterial", + "identifier": "Generic Acoustic Tile", + "roughness": "MediumSmooth", + "thickness": 0.02, + "conductivity": 0.06, + "density": 368.0, + "specific_heat": 590.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.2, + "visible_absorptance": 0.2 + }, { "type": "EnergyMaterial", "identifier": "Generic Roof Membrane", @@ -516,30 +528,6 @@ "solar_absorptance": 0.7, "visible_absorptance": 0.7 }, - { - "type": "EnergyMaterial", - "identifier": "Generic LW Concrete", - "roughness": "MediumRough", - "thickness": 0.1, - "conductivity": 0.53, - "density": 1280.0, - "specific_heat": 840.0, - "thermal_absorptance": 0.9, - "solar_absorptance": 0.8, - "visible_absorptance": 0.8 - }, - { - "type": "EnergyMaterial", - "identifier": "Generic Acoustic Tile", - "roughness": "MediumSmooth", - "thickness": 0.02, - "conductivity": 0.06, - "density": 368.0, - "specific_heat": 590.0, - "thermal_absorptance": 0.9, - "solar_absorptance": 0.2, - "visible_absorptance": 0.2 - }, { "type": "EnergyMaterial", "identifier": "Generic 50mm Insulation", @@ -551,6 +539,18 @@ "thermal_absorptance": 0.9, "solar_absorptance": 0.7, "visible_absorptance": 0.7 + }, + { + "type": "EnergyMaterial", + "identifier": "Generic LW Concrete", + "roughness": "MediumRough", + "thickness": 0.1, + "conductivity": 0.53, + "density": 1280.0, + "specific_heat": 840.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.8, + "visible_absorptance": 0.8 } ] }, @@ -565,6 +565,18 @@ "Generic Acoustic Tile" ], "materials": [ + { + "type": "EnergyMaterial", + "identifier": "Generic Acoustic Tile", + "roughness": "MediumSmooth", + "thickness": 0.02, + "conductivity": 0.06, + "density": 368.0, + "specific_heat": 590.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.2, + "visible_absorptance": 0.2 + }, { "type": "EnergyMaterial", "identifier": "Generic Roof Membrane", @@ -589,30 +601,6 @@ "solar_absorptance": 0.7, "visible_absorptance": 0.7 }, - { - "type": "EnergyMaterial", - "identifier": "Generic LW Concrete", - "roughness": "MediumRough", - "thickness": 0.1, - "conductivity": 0.53, - "density": 1280.0, - "specific_heat": 840.0, - "thermal_absorptance": 0.9, - "solar_absorptance": 0.8, - "visible_absorptance": 0.8 - }, - { - "type": "EnergyMaterial", - "identifier": "Generic Acoustic Tile", - "roughness": "MediumSmooth", - "thickness": 0.02, - "conductivity": 0.06, - "density": 368.0, - "specific_heat": 590.0, - "thermal_absorptance": 0.9, - "solar_absorptance": 0.2, - "visible_absorptance": 0.2 - }, { "type": "EnergyMaterial", "identifier": "Generic 50mm Insulation", @@ -624,6 +612,18 @@ "thermal_absorptance": 0.9, "solar_absorptance": 0.7, "visible_absorptance": 0.7 + }, + { + "type": "EnergyMaterial", + "identifier": "Generic LW Concrete", + "roughness": "MediumRough", + "thickness": 0.1, + "conductivity": 0.53, + "density": 1280.0, + "specific_heat": 840.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.8, + "visible_absorptance": 0.8 } ] } @@ -639,23 +639,6 @@ "Generic Clear Glass" ], "materials": [ - { - "type": "EnergyWindowMaterialGlazing", - "identifier": "Generic Clear Glass", - "thickness": 0.006, - "solar_transmittance": 0.77, - "solar_reflectance": 0.07, - "solar_reflectance_back": 0.07, - "visible_transmittance": 0.88, - "visible_reflectance": 0.08, - "visible_reflectance_back": 0.08, - "infrared_transmittance": 0.0, - "emissivity": 0.84, - "emissivity_back": 0.84, - "conductivity": 1.0, - "dirt_correction": 1.0, - "solar_diffusing": false - }, { "type": "EnergyWindowMaterialGlazing", "identifier": "Generic Low-e Glass", @@ -678,16 +661,7 @@ "identifier": "Generic Window Air Gap", "thickness": 0.0127, "gas_type": "Air" - } - ] - }, - "interior_construction": { - "type": "WindowConstruction", - "identifier": "Generic Single Pane", - "layers": [ - "Generic Clear Glass" - ], - "materials": [ + }, { "type": "EnergyWindowMaterialGlazing", "identifier": "Generic Clear Glass", @@ -707,12 +681,10 @@ } ] }, - "skylight_construction": { + "interior_construction": { "type": "WindowConstruction", - "identifier": "Generic Double Pane", + "identifier": "Generic Single Pane", "layers": [ - "Generic Low-e Glass", - "Generic Window Air Gap", "Generic Clear Glass" ], "materials": [ @@ -732,7 +704,18 @@ "conductivity": 1.0, "dirt_correction": 1.0, "solar_diffusing": false - }, + } + ] + }, + "skylight_construction": { + "type": "WindowConstruction", + "identifier": "Generic Double Pane", + "layers": [ + "Generic Low-e Glass", + "Generic Window Air Gap", + "Generic Clear Glass" + ], + "materials": [ { "type": "EnergyWindowMaterialGlazing", "identifier": "Generic Low-e Glass", @@ -755,18 +738,7 @@ "identifier": "Generic Window Air Gap", "thickness": 0.0127, "gas_type": "Air" - } - ] - }, - "operable_construction": { - "type": "WindowConstruction", - "identifier": "Generic Double Pane", - "layers": [ - "Generic Low-e Glass", - "Generic Window Air Gap", - "Generic Clear Glass" - ], - "materials": [ + }, { "type": "EnergyWindowMaterialGlazing", "identifier": "Generic Clear Glass", @@ -783,7 +755,18 @@ "conductivity": 1.0, "dirt_correction": 1.0, "solar_diffusing": false - }, + } + ] + }, + "operable_construction": { + "type": "WindowConstruction", + "identifier": "Generic Double Pane", + "layers": [ + "Generic Low-e Glass", + "Generic Window Air Gap", + "Generic Clear Glass" + ], + "materials": [ { "type": "EnergyWindowMaterialGlazing", "identifier": "Generic Low-e Glass", @@ -806,6 +789,23 @@ "identifier": "Generic Window Air Gap", "thickness": 0.0127, "gas_type": "Air" + }, + { + "type": "EnergyWindowMaterialGlazing", + "identifier": "Generic Clear Glass", + "thickness": 0.006, + "solar_transmittance": 0.77, + "solar_reflectance": 0.07, + "solar_reflectance_back": 0.07, + "visible_transmittance": 0.88, + "visible_reflectance": 0.08, + "visible_reflectance_back": 0.08, + "infrared_transmittance": 0.0, + "emissivity": 0.84, + "emissivity_back": 0.84, + "conductivity": 1.0, + "dirt_correction": 1.0, + "solar_diffusing": false } ] } @@ -821,18 +821,6 @@ "Generic Painted Metal" ], "materials": [ - { - "type": "EnergyMaterial", - "identifier": "Generic Painted Metal", - "roughness": "Smooth", - "thickness": 0.0015, - "conductivity": 45.0, - "density": 7690.0, - "specific_heat": 410.0, - "thermal_absorptance": 0.9, - "solar_absorptance": 0.5, - "visible_absorptance": 0.5 - }, { "type": "EnergyMaterial", "identifier": "Generic 25mm Insulation", @@ -844,6 +832,18 @@ "thermal_absorptance": 0.9, "solar_absorptance": 0.7, "visible_absorptance": 0.7 + }, + { + "type": "EnergyMaterial", + "identifier": "Generic Painted Metal", + "roughness": "Smooth", + "thickness": 0.0015, + "conductivity": 45.0, + "density": 7690.0, + "specific_heat": 410.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.5, + "visible_absorptance": 0.5 } ] }, @@ -877,23 +877,6 @@ "Generic Clear Glass" ], "materials": [ - { - "type": "EnergyWindowMaterialGlazing", - "identifier": "Generic Clear Glass", - "thickness": 0.006, - "solar_transmittance": 0.77, - "solar_reflectance": 0.07, - "solar_reflectance_back": 0.07, - "visible_transmittance": 0.88, - "visible_reflectance": 0.08, - "visible_reflectance_back": 0.08, - "infrared_transmittance": 0.0, - "emissivity": 0.84, - "emissivity_back": 0.84, - "conductivity": 1.0, - "dirt_correction": 1.0, - "solar_diffusing": false - }, { "type": "EnergyWindowMaterialGlazing", "identifier": "Generic Low-e Glass", @@ -916,6 +899,23 @@ "identifier": "Generic Window Air Gap", "thickness": 0.0127, "gas_type": "Air" + }, + { + "type": "EnergyWindowMaterialGlazing", + "identifier": "Generic Clear Glass", + "thickness": 0.006, + "solar_transmittance": 0.77, + "solar_reflectance": 0.07, + "solar_reflectance_back": 0.07, + "visible_transmittance": 0.88, + "visible_reflectance": 0.08, + "visible_reflectance_back": 0.08, + "infrared_transmittance": 0.0, + "emissivity": 0.84, + "emissivity_back": 0.84, + "conductivity": 1.0, + "dirt_correction": 1.0, + "solar_diffusing": false } ] }, @@ -954,18 +954,6 @@ "Generic Painted Metal" ], "materials": [ - { - "type": "EnergyMaterial", - "identifier": "Generic Painted Metal", - "roughness": "Smooth", - "thickness": 0.0015, - "conductivity": 45.0, - "density": 7690.0, - "specific_heat": 410.0, - "thermal_absorptance": 0.9, - "solar_absorptance": 0.5, - "visible_absorptance": 0.5 - }, { "type": "EnergyMaterial", "identifier": "Generic 25mm Insulation", @@ -977,6 +965,18 @@ "thermal_absorptance": 0.9, "solar_absorptance": 0.7, "visible_absorptance": 0.7 + }, + { + "type": "EnergyMaterial", + "identifier": "Generic Painted Metal", + "roughness": "Smooth", + "thickness": 0.0015, + "conductivity": 45.0, + "density": 7690.0, + "specific_heat": 410.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.5, + "visible_absorptance": 0.5 } ] } diff --git a/samples/construction_set/constructionset_partial_exterior.json b/samples/construction_set/constructionset_partial_exterior.json index 8600953..d030887 100644 --- a/samples/construction_set/constructionset_partial_exterior.json +++ b/samples/construction_set/constructionset_partial_exterior.json @@ -13,6 +13,18 @@ "5/8 in. Gypsum Board" ], "materials": [ + { + "type": "EnergyMaterial", + "identifier": "25mm Stucco", + "roughness": "Smooth", + "thickness": 0.0254, + "conductivity": 0.7195184959232496, + "density": 1856.0042437235265, + "specific_heat": 839.4583814522845, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 + }, { "type": "EnergyMaterial", "identifier": "5/8 in. Gypsum Board", @@ -33,18 +45,6 @@ "thermal_absorptance": 0.9, "solar_absorptance": 0.7, "visible_absorptance": 0.7 - }, - { - "type": "EnergyMaterial", - "identifier": "25mm Stucco", - "roughness": "Smooth", - "thickness": 0.0254, - "conductivity": 0.7195184959232496, - "density": 1856.0042437235265, - "specific_heat": 839.4583814522845, - "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 } ] }, @@ -57,15 +57,6 @@ "8 in. Concrete Block Basement Wall" ], "materials": [ - { - "type": "EnergyMaterialNoMass", - "identifier": "Typical Insulation-R7", - "r_value": 1.2327712866691938, - "roughness": "MediumSmooth", - "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 - }, { "type": "EnergyMaterial", "identifier": "8 in. Concrete Block Basement Wall", @@ -77,6 +68,15 @@ "thermal_absorptance": 0.9, "solar_absorptance": 0.7, "visible_absorptance": 0.7 + }, + { + "type": "EnergyMaterialNoMass", + "identifier": "Typical Insulation-R7", + "r_value": 1.2327712866691938, + "roughness": "MediumSmooth", + "thermal_absorptance": 0.9, + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 } ] } @@ -95,10 +95,13 @@ ], "materials": [ { - "type": "EnergyMaterialNoMass", - "identifier": "Typical Insulation-R24", - "r_value": 4.226644411437236, - "roughness": "MediumSmooth", + "type": "EnergyMaterial", + "identifier": "25mm Stucco", + "roughness": "Smooth", + "thickness": 0.0254, + "conductivity": 0.7195184959232496, + "density": 1856.0042437235265, + "specific_heat": 839.4583814522845, "thermal_absorptance": 0.9, "solar_absorptance": 0.7, "visible_absorptance": 0.7 @@ -125,13 +128,10 @@ "visible_absorptance": 0.8 }, { - "type": "EnergyMaterial", - "identifier": "25mm Stucco", - "roughness": "Smooth", - "thickness": 0.0254, - "conductivity": 0.7195184959232496, - "density": 1856.0042437235265, - "specific_heat": 839.4583814522845, + "type": "EnergyMaterialNoMass", + "identifier": "Typical Insulation-R24", + "r_value": 4.226644411437236, + "roughness": "MediumSmooth", "thermal_absorptance": 0.9, "solar_absorptance": 0.7, "visible_absorptance": 0.7 @@ -148,6 +148,15 @@ "Typical Carpet Pad" ], "materials": [ + { + "type": "EnergyMaterialNoMass", + "identifier": "Typical Carpet Pad", + "r_value": 0.2164799871520999, + "roughness": "VeryRough", + "thermal_absorptance": 0.9, + "solar_absorptance": 0.7, + "visible_absorptance": 0.8 + }, { "type": "EnergyMaterialNoMass", "identifier": "Typical Insulation-R4", @@ -168,15 +177,6 @@ "thermal_absorptance": 0.9, "solar_absorptance": 0.7, "visible_absorptance": 0.7 - }, - { - "type": "EnergyMaterialNoMass", - "identifier": "Typical Carpet Pad", - "r_value": 0.2164799871520999, - "roughness": "VeryRough", - "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.8 } ] } @@ -192,6 +192,18 @@ "Metal Roof Surface" ], "materials": [ + { + "type": "EnergyMaterial", + "identifier": "Metal Roof Surface", + "roughness": "Smooth", + "thickness": 0.0007999999999999979, + "conductivity": 45.24971874361766, + "density": 7824.017889489713, + "specific_heat": 499.67760800730963, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 + }, { "type": "EnergyMaterial", "identifier": "Roof Membrane", @@ -212,18 +224,6 @@ "thermal_absorptance": 0.9, "solar_absorptance": 0.7, "visible_absorptance": 0.7 - }, - { - "type": "EnergyMaterial", - "identifier": "Metal Roof Surface", - "roughness": "Smooth", - "thickness": 0.0007999999999999979, - "conductivity": 45.24971874361766, - "density": 7824.017889489713, - "specific_heat": 499.67760800730963, - "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 } ] }, @@ -241,6 +241,12 @@ "CLEAR 6MM" ], "materials": [ + { + "type": "EnergyWindowMaterialGas", + "identifier": "AIR 13MM", + "thickness": 0.0127, + "gas_type": "Air" + }, { "type": "EnergyWindowMaterialGlazing", "identifier": "REF D CLEAR 6MM", @@ -274,12 +280,6 @@ "conductivity": 0.8993981199040626, "dirt_correction": 1.0, "solar_diffusing": false - }, - { - "type": "EnergyWindowMaterialGas", - "identifier": "AIR 13MM", - "thickness": 0.0127, - "gas_type": "Air" } ] }, @@ -293,12 +293,6 @@ "Glass_2027F_LayerAvg" ], "materials": [ - { - "type": "EnergyWindowMaterialGas", - "identifier": "Gap_1_W_0_0038", - "thickness": 0.0037999999999999887, - "gas_type": "Air" - }, { "type": "EnergyWindowMaterialGlazing", "identifier": "Glass_2052_LayerAvg", @@ -316,6 +310,12 @@ "dirt_correction": 1.0, "solar_diffusing": false }, + { + "type": "EnergyWindowMaterialGas", + "identifier": "Gap_1_W_0_0038", + "thickness": 0.0037999999999999887, + "gas_type": "Air" + }, { "type": "EnergyWindowMaterialGlazing", "identifier": "Glass_2027F_LayerAvg", @@ -344,6 +344,12 @@ "CLEAR 6MM" ], "materials": [ + { + "type": "EnergyWindowMaterialGas", + "identifier": "AIR 13MM", + "thickness": 0.0127, + "gas_type": "Air" + }, { "type": "EnergyWindowMaterialGlazing", "identifier": "REF D CLEAR 6MM", @@ -377,12 +383,6 @@ "conductivity": 0.8993981199040626, "dirt_correction": 1.0, "solar_diffusing": false - }, - { - "type": "EnergyWindowMaterialGas", - "identifier": "AIR 13MM", - "thickness": 0.0127, - "gas_type": "Air" } ] } @@ -397,6 +397,15 @@ "Typical Insulation-R2" ], "materials": [ + { + "type": "EnergyMaterialNoMass", + "identifier": "Typical Insulation-R2", + "r_value": 0.35222036761976966, + "roughness": "MediumSmooth", + "thermal_absorptance": 0.9, + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 + }, { "type": "EnergyMaterial", "identifier": "F08 Metal surface", @@ -408,15 +417,6 @@ "thermal_absorptance": 0.9, "solar_absorptance": 0.7, "visible_absorptance": 0.7 - }, - { - "type": "EnergyMaterialNoMass", - "identifier": "Typical Insulation-R2", - "r_value": 0.35222036761976966, - "roughness": "MediumSmooth", - "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 } ] }, @@ -447,6 +447,12 @@ "dirt_correction": 1.0, "solar_diffusing": false }, + { + "type": "EnergyWindowMaterialGas", + "identifier": "AIR 13MM", + "thickness": 0.0127, + "gas_type": "Air" + }, { "type": "EnergyWindowMaterialGlazing", "identifier": "CLEAR 6MM", @@ -463,12 +469,6 @@ "conductivity": 0.8993981199040626, "dirt_correction": 1.0, "solar_diffusing": false - }, - { - "type": "EnergyWindowMaterialGas", - "identifier": "AIR 13MM", - "thickness": 0.0127, - "gas_type": "Air" } ] }, diff --git a/samples/model/model_complete_multi_zone_office.json b/samples/model/model_complete_multi_zone_office.json index b1d626c..68067f0 100644 --- a/samples/model/model_complete_multi_zone_office.json +++ b/samples/model/model_complete_multi_zone_office.json @@ -90,22 +90,39 @@ ], "global_construction_set": "Default Generic Construction Set", "constructions": [ + { + "type": "ShadeConstruction", + "identifier": "Generic Shade", + "solar_reflectance": 0.35, + "visible_reflectance": 0.35, + "is_specular": false + }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exterior Door", + "identifier": "Generic Interior Wall", "layers": [ - "Generic Painted Metal", - "Generic 25mm Insulation", - "Generic Painted Metal" + "Generic Gypsum Board", + "Generic Wall Air Gap", + "Generic Gypsum Board" ] }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Floor", + "identifier": "Generic Underground Wall", "layers": [ - "Generic Acoustic Tile", - "Generic Ceiling Air Gap", - "Generic LW Concrete" + "Generic 50mm Insulation", + "Generic HW Concrete", + "Generic Wall Air Gap", + "Generic Gypsum Board" + ] + }, + { + "type": "OpaqueConstructionAbridged", + "identifier": "Generic Exterior Door", + "layers": [ + "Generic Painted Metal", + "Generic 25mm Insulation", + "Generic Painted Metal" ] }, { @@ -119,13 +136,11 @@ }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exterior Wall", + "identifier": "Generic Interior Floor", "layers": [ - "Generic Brick", - "Generic LW Concrete", - "Generic 50mm Insulation", - "Generic Wall Air Gap", - "Generic Gypsum Board" + "Generic Acoustic Tile", + "Generic Ceiling Air Gap", + "Generic LW Concrete" ] }, { @@ -138,46 +153,31 @@ }, { "type": "OpaqueConstructionAbridged", - "identifier": "Attic Floor Construction", + "identifier": "Generic Roof", "layers": [ - "Generic 25mm Wood", + "Generic Roof Membrane", "Generic 50mm Insulation", - "Generic 25mm Wood" - ] - }, - { - "type": "AirBoundaryConstructionAbridged", - "identifier": "Generic Air Boundary", - "air_mixing_per_area": 0.1, - "air_mixing_schedule": "Always On" - }, - { - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exposed Floor", - "layers": [ - "Generic Painted Metal", + "Generic LW Concrete", "Generic Ceiling Air Gap", - "Generic 50mm Insulation", - "Generic LW Concrete" + "Generic Acoustic Tile" ] }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Roof", + "identifier": "Generic Exterior Wall", "layers": [ - "Generic Roof Membrane", - "Generic 50mm Insulation", + "Generic Brick", "Generic LW Concrete", - "Generic Ceiling Air Gap", - "Generic Acoustic Tile" + "Generic 50mm Insulation", + "Generic Wall Air Gap", + "Generic Gypsum Board" ] }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Underground Roof", + "identifier": "Generic Interior Ceiling", "layers": [ - "Generic 50mm Insulation", - "Generic HW Concrete", + "Generic LW Concrete", "Generic Ceiling Air Gap", "Generic Acoustic Tile" ] @@ -193,20 +193,29 @@ }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Door", + "identifier": "Generic Exposed Floor", "layers": [ - "Generic 25mm Wood" + "Generic Painted Metal", + "Generic Ceiling Air Gap", + "Generic 50mm Insulation", + "Generic LW Concrete" ] }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Wall", + "identifier": "Attic Floor Construction", "layers": [ - "Generic Gypsum Board", - "Generic Wall Air Gap", - "Generic Gypsum Board" + "Generic 25mm Wood", + "Generic 50mm Insulation", + "Generic 25mm Wood" ] }, + { + "type": "AirBoundaryConstructionAbridged", + "identifier": "Generic Air Boundary", + "air_mixing_per_area": 0.1, + "air_mixing_schedule": "Always On" + }, { "type": "WindowConstructionAbridged", "identifier": "Generic Single Pane", @@ -216,43 +225,34 @@ }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Ceiling", + "identifier": "Generic Interior Door", "layers": [ - "Generic LW Concrete", - "Generic Ceiling Air Gap", - "Generic Acoustic Tile" + "Generic 25mm Wood" ] }, - { - "type": "ShadeConstruction", - "identifier": "Generic Shade", - "solar_reflectance": 0.35, - "visible_reflectance": 0.35, - "is_specular": false - }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Underground Wall", + "identifier": "Generic Underground Roof", "layers": [ "Generic 50mm Insulation", "Generic HW Concrete", - "Generic Wall Air Gap", - "Generic Gypsum Board" + "Generic Ceiling Air Gap", + "Generic Acoustic Tile" ] } ], "materials": [ { "type": "EnergyMaterial", - "identifier": "Generic 25mm Insulation", - "roughness": "MediumRough", - "thickness": 0.05, - "conductivity": 0.03, - "density": 43.0, - "specific_heat": 1210.0, + "identifier": "Generic Acoustic Tile", + "roughness": "MediumSmooth", + "thickness": 0.02, + "conductivity": 0.06, + "density": 368.0, + "specific_heat": 590.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 + "solar_absorptance": 0.2, + "visible_absorptance": 0.2 }, { "type": "EnergyMaterial", @@ -266,6 +266,23 @@ "solar_absorptance": 0.7, "visible_absorptance": 0.7 }, + { + "type": "EnergyWindowMaterialGlazing", + "identifier": "Generic Low-e Glass", + "thickness": 0.006, + "solar_transmittance": 0.45, + "solar_reflectance": 0.36, + "solar_reflectance_back": 0.36, + "visible_transmittance": 0.71, + "visible_reflectance": 0.21, + "visible_reflectance_back": 0.21, + "infrared_transmittance": 0.0, + "emissivity": 0.84, + "emissivity_back": 0.047, + "conductivity": 1.0, + "dirt_correction": 1.0, + "solar_diffusing": false + }, { "type": "EnergyMaterial", "identifier": "Generic Roof Membrane", @@ -280,27 +297,27 @@ }, { "type": "EnergyMaterial", - "identifier": "Generic Painted Metal", + "identifier": "Generic Wall Air Gap", "roughness": "Smooth", - "thickness": 0.0015, - "conductivity": 45.0, - "density": 7690.0, - "specific_heat": 410.0, + "thickness": 0.1, + "conductivity": 0.667, + "density": 1.28, + "specific_heat": 1000.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.5, - "visible_absorptance": 0.5 + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 }, { "type": "EnergyMaterial", - "identifier": "Generic 25mm Wood", - "roughness": "MediumSmooth", - "thickness": 0.0254, - "conductivity": 0.15, - "density": 608.0, - "specific_heat": 1630.0, + "identifier": "Generic 25mm Insulation", + "roughness": "MediumRough", + "thickness": 0.05, + "conductivity": 0.03, + "density": 43.0, + "specific_heat": 1210.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.5, - "visible_absorptance": 0.5 + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 }, { "type": "EnergyMaterial", @@ -314,52 +331,41 @@ "solar_absorptance": 0.7, "visible_absorptance": 0.7 }, - { - "type": "EnergyWindowMaterialGas", - "identifier": "Generic Window Air Gap", - "thickness": 0.0127, - "gas_type": "Air" - }, { "type": "EnergyMaterial", - "identifier": "Generic Wall Air Gap", - "roughness": "Smooth", - "thickness": 0.1, - "conductivity": 0.667, - "density": 1.28, - "specific_heat": 1000.0, + "identifier": "Generic HW Concrete", + "roughness": "MediumRough", + "thickness": 0.2, + "conductivity": 1.95, + "density": 2240.0, + "specific_heat": 900.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 + "solar_absorptance": 0.8, + "visible_absorptance": 0.8 }, { - "type": "EnergyWindowMaterialGlazing", - "identifier": "Generic Clear Glass", - "thickness": 0.006, - "solar_transmittance": 0.77, - "solar_reflectance": 0.07, - "solar_reflectance_back": 0.07, - "visible_transmittance": 0.88, - "visible_reflectance": 0.08, - "visible_reflectance_back": 0.08, - "infrared_transmittance": 0.0, - "emissivity": 0.84, - "emissivity_back": 0.84, - "conductivity": 1.0, - "dirt_correction": 1.0, - "solar_diffusing": false + "type": "EnergyMaterial", + "identifier": "Generic Gypsum Board", + "roughness": "MediumSmooth", + "thickness": 0.0127, + "conductivity": 0.16, + "density": 800.0, + "specific_heat": 1090.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.5, + "visible_absorptance": 0.5 }, { "type": "EnergyMaterial", - "identifier": "Generic Brick", + "identifier": "Generic 50mm Insulation", "roughness": "MediumRough", - "thickness": 0.1, - "conductivity": 0.9, - "density": 1920.0, - "specific_heat": 790.0, + "thickness": 0.05, + "conductivity": 0.03, + "density": 43.0, + "specific_heat": 1210.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.65, - "visible_absorptance": 0.65 + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 }, { "type": "EnergyMaterial", @@ -375,68 +381,62 @@ }, { "type": "EnergyMaterial", - "identifier": "Generic Gypsum Board", + "identifier": "Generic 25mm Wood", "roughness": "MediumSmooth", - "thickness": 0.0127, - "conductivity": 0.16, - "density": 800.0, - "specific_heat": 1090.0, + "thickness": 0.0254, + "conductivity": 0.15, + "density": 608.0, + "specific_heat": 1630.0, "thermal_absorptance": 0.9, "solar_absorptance": 0.5, "visible_absorptance": 0.5 }, { "type": "EnergyMaterial", - "identifier": "Generic HW Concrete", - "roughness": "MediumRough", - "thickness": 0.2, - "conductivity": 1.95, - "density": 2240.0, - "specific_heat": 900.0, + "identifier": "Generic Painted Metal", + "roughness": "Smooth", + "thickness": 0.0015, + "conductivity": 45.0, + "density": 7690.0, + "specific_heat": 410.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.8, - "visible_absorptance": 0.8 - }, - { - "type": "EnergyWindowMaterialGlazing", - "identifier": "Generic Low-e Glass", - "thickness": 0.006, - "solar_transmittance": 0.45, - "solar_reflectance": 0.36, - "solar_reflectance_back": 0.36, - "visible_transmittance": 0.71, - "visible_reflectance": 0.21, - "visible_reflectance_back": 0.21, - "infrared_transmittance": 0.0, - "emissivity": 0.84, - "emissivity_back": 0.047, - "conductivity": 1.0, - "dirt_correction": 1.0, - "solar_diffusing": false + "solar_absorptance": 0.5, + "visible_absorptance": 0.5 }, { - "type": "EnergyMaterial", - "identifier": "Generic Acoustic Tile", - "roughness": "MediumSmooth", - "thickness": 0.02, - "conductivity": 0.06, - "density": 368.0, - "specific_heat": 590.0, - "thermal_absorptance": 0.9, - "solar_absorptance": 0.2, - "visible_absorptance": 0.2 + "type": "EnergyWindowMaterialGas", + "identifier": "Generic Window Air Gap", + "thickness": 0.0127, + "gas_type": "Air" }, { "type": "EnergyMaterial", - "identifier": "Generic 50mm Insulation", + "identifier": "Generic Brick", "roughness": "MediumRough", - "thickness": 0.05, - "conductivity": 0.03, - "density": 43.0, - "specific_heat": 1210.0, + "thickness": 0.1, + "conductivity": 0.9, + "density": 1920.0, + "specific_heat": 790.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 + "solar_absorptance": 0.65, + "visible_absorptance": 0.65 + }, + { + "type": "EnergyWindowMaterialGlazing", + "identifier": "Generic Clear Glass", + "thickness": 0.006, + "solar_transmittance": 0.77, + "solar_reflectance": 0.07, + "solar_reflectance_back": 0.07, + "visible_transmittance": 0.88, + "visible_reflectance": 0.08, + "visible_reflectance_back": 0.08, + "infrared_transmittance": 0.0, + "emissivity": 0.84, + "emissivity_back": 0.84, + "conductivity": 1.0, + "dirt_correction": 1.0, + "solar_diffusing": false } ], "hvacs": [ @@ -529,27 +529,37 @@ "schedules": [ { "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Heating", + "identifier": "Generic Office Equipment", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", "values": [ - 15.6 + 0.2307553806, + 0.288107175, + 0.2307553806 ], "times": [ [ 0, 0 + ], + [ + 6, + 0 + ], + [ + 18, + 0 ] ], "interpolate": false }, { "type": "ScheduleDay", - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", "values": [ - 15.6 + 1.0 ], "times": [ [ @@ -561,47 +571,28 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", "values": [ - 15.6, - 17.6, - 19.6, - 21.0, - 15.6 + 0.0 ], "times": [ [ 0, 0 - ], - [ - 5, - 0 - ], - [ - 6, - 0 - ], - [ - 7, - 0 - ], - [ - 22, - 0 ] ], "interpolate": false }, { "type": "ScheduleDay", - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", "values": [ - 15.6, - 17.8, - 20.0, - 21.0, - 15.6 + 0.2307553806, + 0.381234796, + 0.476543495, + 0.3335804465, + 0.285926097, + 0.2307553806 ], "times": [ [ @@ -609,19 +600,23 @@ 0 ], [ - 5, + 6, 0 ], [ - 6, + 8, 0 ], [ - 7, + 12, 0 ], [ - 22, + 17, + 0 + ], + [ + 19, 0 ] ], @@ -629,13 +624,15 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", "values": [ - 15.6, - 17.8, - 20.0, - 21.0, - 15.6 + 0.3076738408, + 0.381234796, + 0.857778291, + 0.762469592, + 0.857778291, + 0.476543495, + 0.381234796 ], "times": [ [ @@ -643,30 +640,38 @@ 0 ], [ - 5, + 6, 0 ], [ - 6, + 8, 0 ], [ - 7, + 12, + 0 + ], + [ + 13, 0 ], [ 17, 0 + ], + [ + 18, + 0 ] ], "interpolate": false } ], - "default_day_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "default_day_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", "schedule_rules": [ { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", + "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", "apply_sunday": false, "apply_monday": true, "apply_tuesday": true, @@ -685,7 +690,7 @@ }, { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", + "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", "apply_sunday": false, "apply_monday": false, "apply_tuesday": false, @@ -703,77 +708,84 @@ ] } ], - "holiday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", - "summer_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", - "winter_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", - "schedule_type_limit": "Temperature" + "holiday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "summer_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", + "winter_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", + "schedule_type_limit": "Fractional" }, { "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Lighting", + "identifier": "Generic Office Infiltration", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", + "identifier": "OfficeMedium INFIL_SCH_PNNL_Default", "values": [ - 0.05, - 0.04311628, - 0.05 + 1.0 ], "times": [ [ 0, 0 - ], - [ - 6, - 0 - ], - [ - 18, - 0 ] ], "interpolate": false }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", + "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", "values": [ + 1.0, + 0.25, 1.0 ], "times": [ [ 0, 0 + ], + [ + 6, + 0 + ], + [ + 22, + 0 ] ], "interpolate": false }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", + "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", "values": [ - 0.0 + 1.0, + 0.25, + 1.0 ], "times": [ [ 0, 0 + ], + [ + 6, + 0 + ], + [ + 18, + 0 ] ], "interpolate": false }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", + "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy", "values": [ - 0.05, - 0.08623256, - 0.25869768, - 0.12934884, - 0.04311628, - 0.05 + 1.0, + 0.25, + 1.0 ], "times": [ [ @@ -785,19 +797,7 @@ 0 ], [ - 8, - 0 - ], - [ - 12, - 0 - ], - [ - 17, - 0 - ], - [ - 19, + 22, 0 ] ], @@ -805,18 +805,11 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", + "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat", "values": [ - 0.05, - 0.1, - 0.08623256, - 0.25869768, - 0.77609304, - 0.4311628, - 0.25869768, - 0.17246512, - 0.08623256, - 0.04311628 + 1.0, + 0.25, + 1.0 ], "times": [ [ @@ -824,50 +817,22 @@ 0 ], [ - 5, - 0 - ], - [ - 6, - 0 - ], - [ - 7, - 0 - ], - [ - 8, - 0 - ], - [ - 17, - 0 - ], - [ - 18, - 0 - ], - [ - 20, - 0 - ], - [ - 22, + 6, 0 ], [ - 23, + 18, 0 ] ], "interpolate": false } ], - "default_day_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", + "default_day_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", "schedule_rules": [ { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", + "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Wkdy", "apply_sunday": false, "apply_monday": true, "apply_tuesday": true, @@ -886,7 +851,7 @@ }, { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", + "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Sat", "apply_sunday": false, "apply_monday": false, "apply_tuesday": false, @@ -904,34 +869,20 @@ ] } ], - "holiday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", - "summer_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", - "winter_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", + "holiday_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", + "summer_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", + "winter_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", "schedule_type_limit": "Fractional" }, { "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Activity", + "identifier": "Generic Office Cooling", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "OfficeMedium ACTIVITY_SCH_Default", - "values": [ - 120.0 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium ACTIVITY_SCH_Default_SmrDsn", + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", "values": [ - 120.0 + 26.7 ], "times": [ [ @@ -943,58 +894,29 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium ACTIVITY_SCH_Default_WntrDsn", + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", "values": [ - 120.0 + 26.7, + 25.7, + 25.0, + 24.0, + 26.7 ], "times": [ [ 0, 0 - ] - ], - "interpolate": false - } - ], - "default_day_schedule": "OfficeMedium ACTIVITY_SCH_Default", - "holiday_schedule": "OfficeMedium ACTIVITY_SCH_Default", - "summer_designday_schedule": "OfficeMedium ACTIVITY_SCH_Default_SmrDsn", - "winter_designday_schedule": "OfficeMedium ACTIVITY_SCH_Default_WntrDsn", - "schedule_type_limit": "Activity Level" - }, - { - "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Infiltration", - "day_schedules": [ - { - "type": "ScheduleDay", - "identifier": "OfficeMedium INFIL_SCH_PNNL_Default", - "values": [ - 1.0 - ], - "times": [ + ], [ - 0, + 5, 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", - "values": [ - 1.0, - 0.25, - 1.0 - ], - "times": [ + ], [ - 0, + 6, 0 ], [ - 6, + 7, 0 ], [ @@ -1006,45 +928,45 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", "values": [ - 1.0, - 0.25, - 1.0 + 26.7 ], "times": [ [ 0, 0 - ], - [ - 6, - 0 - ], - [ - 18, - 0 ] ], "interpolate": false }, { "type": "ScheduleDay", - "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy", + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", "values": [ - 1.0, - 0.25, - 1.0 + 26.7, + 25.6, + 25.0, + 24.0, + 26.7 ], "times": [ [ 0, 0 ], + [ + 5, + 0 + ], [ 6, 0 ], + [ + 7, + 0 + ], [ 22, 0 @@ -1054,34 +976,44 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat", + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", "values": [ - 1.0, - 0.25, - 1.0 + 26.7, + 25.7, + 25.0, + 24.0, + 26.7 ], "times": [ [ 0, 0 ], + [ + 5, + 0 + ], [ 6, 0 ], [ - 18, + 7, + 0 + ], + [ + 17, 0 ] ], "interpolate": false } ], - "default_day_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", + "default_day_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", "schedule_rules": [ { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Wkdy", + "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", "apply_sunday": false, "apply_monday": true, "apply_tuesday": true, @@ -1100,7 +1032,7 @@ }, { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Sat", + "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", "apply_sunday": false, "apply_monday": false, "apply_tuesday": false, @@ -1118,22 +1050,75 @@ ] } ], - "holiday_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", - "summer_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", - "winter_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", - "schedule_type_limit": "Fractional" + "holiday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", + "summer_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", + "winter_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", + "schedule_type_limit": "Temperature" }, { "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Equipment", + "identifier": "Generic Office Activity", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", + "identifier": "OfficeMedium ACTIVITY_SCH_Default", "values": [ - 0.2307553806, - 0.288107175, - 0.2307553806 + 120.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium ACTIVITY_SCH_Default_SmrDsn", + "values": [ + 120.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium ACTIVITY_SCH_Default_WntrDsn", + "values": [ + 120.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + } + ], + "default_day_schedule": "OfficeMedium ACTIVITY_SCH_Default", + "holiday_schedule": "OfficeMedium ACTIVITY_SCH_Default", + "summer_designday_schedule": "OfficeMedium ACTIVITY_SCH_Default_SmrDsn", + "winter_designday_schedule": "OfficeMedium ACTIVITY_SCH_Default_WntrDsn", + "schedule_type_limit": "Activity Level" + }, + { + "type": "ScheduleRulesetAbridged", + "identifier": "Generic Office Lighting", + "day_schedules": [ + { + "type": "ScheduleDay", + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", + "values": [ + 0.05, + 0.04311628, + 0.05 ], "times": [ [ @@ -1153,7 +1138,7 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", "values": [ 1.0 ], @@ -1167,7 +1152,7 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", "values": [ 0.0 ], @@ -1181,14 +1166,14 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", "values": [ - 0.2307553806, - 0.381234796, - 0.476543495, - 0.3335804465, - 0.285926097, - 0.2307553806 + 0.05, + 0.08623256, + 0.25869768, + 0.12934884, + 0.04311628, + 0.05 ], "times": [ [ @@ -1220,54 +1205,69 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", "values": [ - 0.3076738408, - 0.381234796, - 0.857778291, - 0.762469592, - 0.857778291, - 0.476543495, - 0.381234796 + 0.05, + 0.1, + 0.08623256, + 0.25869768, + 0.77609304, + 0.4311628, + 0.25869768, + 0.17246512, + 0.08623256, + 0.04311628 ], "times": [ [ - 0, + 0, + 0 + ], + [ + 5, 0 ], [ 6, 0 ], + [ + 7, + 0 + ], [ 8, 0 ], [ - 12, + 17, 0 ], [ - 13, + 18, 0 ], [ - 17, + 20, 0 ], [ - 18, + 22, + 0 + ], + [ + 23, 0 ] ], "interpolate": false } ], - "default_day_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", + "default_day_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", "schedule_rules": [ { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", + "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", "apply_sunday": false, "apply_monday": true, "apply_tuesday": true, @@ -1286,7 +1286,7 @@ }, { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", "apply_sunday": false, "apply_monday": false, "apply_tuesday": false, @@ -1304,20 +1304,42 @@ ] } ], - "holiday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", - "summer_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", - "winter_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", + "holiday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", + "summer_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", + "winter_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", "schedule_type_limit": "Fractional" }, { "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Cooling", + "identifier": "Always On", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", + "identifier": "Always On_Day Schedule", "values": [ - 26.7 + 1.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + } + ], + "default_day_schedule": "Always On_Day Schedule", + "schedule_type_limit": "Fractional" + }, + { + "type": "ScheduleRulesetAbridged", + "identifier": "Generic Office Heating", + "day_schedules": [ + { + "type": "ScheduleDay", + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "values": [ + 15.6 ], "times": [ [ @@ -1329,13 +1351,27 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", "values": [ - 26.7, - 25.7, - 25.0, - 24.0, - 26.7 + 15.6 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", + "values": [ + 15.6, + 17.6, + 19.6, + 21.0, + 15.6 ], "times": [ [ @@ -1363,27 +1399,13 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", - "values": [ - 26.7 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", "values": [ - 26.7, - 25.6, - 25.0, - 24.0, - 26.7 + 15.6, + 17.8, + 20.0, + 21.0, + 15.6 ], "times": [ [ @@ -1411,13 +1433,13 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", "values": [ - 26.7, - 25.7, - 25.0, - 24.0, - 26.7 + 15.6, + 17.8, + 20.0, + 21.0, + 15.6 ], "times": [ [ @@ -1444,11 +1466,11 @@ "interpolate": false } ], - "default_day_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", + "default_day_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", "schedule_rules": [ { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", + "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", "apply_sunday": false, "apply_monday": true, "apply_tuesday": true, @@ -1467,7 +1489,7 @@ }, { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", + "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", "apply_sunday": false, "apply_monday": false, "apply_tuesday": false, @@ -1485,33 +1507,11 @@ ] } ], - "holiday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", - "summer_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", - "winter_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", + "holiday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "summer_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", + "winter_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", "schedule_type_limit": "Temperature" }, - { - "type": "ScheduleRulesetAbridged", - "identifier": "Always On", - "day_schedules": [ - { - "type": "ScheduleDay", - "identifier": "Always On_Day Schedule", - "values": [ - 1.0 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - } - ], - "default_day_schedule": "Always On_Day Schedule", - "schedule_type_limit": "Fractional" - }, { "type": "ScheduleRulesetAbridged", "identifier": "Generic Office Occupancy", @@ -1730,23 +1730,23 @@ }, { "type": "ScheduleTypeLimit", - "identifier": "Activity Level", - "lower_limit": 0.0, + "identifier": "Temperature", + "lower_limit": -273.15, "upper_limit": { "type": "NoLimit" }, "numeric_type": "Continuous", - "unit_type": "ActivityLevel" + "unit_type": "Temperature" }, { "type": "ScheduleTypeLimit", - "identifier": "Temperature", - "lower_limit": -273.15, + "identifier": "Activity Level", + "lower_limit": 0.0, "upper_limit": { "type": "NoLimit" }, "numeric_type": "Continuous", - "unit_type": "Temperature" + "unit_type": "ActivityLevel" } ] }, @@ -1757,39 +1757,39 @@ "type": "ModifierSetAbridged", "identifier": "Generic_Interior_Visible_Modifier_Set", "wall_set": { - "exterior_modifier": "generic_wall_0.50", "interior_modifier": "generic_wall_0.50", - "type": "WallConstructionSetAbridged" + "exterior_modifier": "generic_wall_0.50", + "type": "WallModifierSetAbridged" }, "floor_set": { - "exterior_modifier": "generic_floor_0.20", "interior_modifier": "generic_floor_0.20", - "type": "FloorConstructionSetAbridged" + "exterior_modifier": "generic_floor_0.20", + "type": "FloorModifierSetAbridged" }, "roof_ceiling_set": { - "exterior_modifier": "generic_ceiling_0.80", "interior_modifier": "generic_ceiling_0.80", - "type": "RoofCeilingConstructionSetAbridged" + "exterior_modifier": "generic_ceiling_0.80", + "type": "RoofCeilingModifierSetAbridged" }, "aperture_set": { + "interior_modifier": "generic_interior_window_vis_0.88", "skylight_modifier": "generic_exterior_window_vis_0.64", "operable_modifier": "generic_exterior_window_vis_0.64", - "interior_modifier": "generic_interior_window_vis_0.88", - "type": "ApertureConstructionSetAbridged", + "type": "ApertureModifierSetAbridged", "window_modifier": "generic_exterior_window_vis_0.64" }, "door_set": { "exterior_modifier": "generic_opaque_door_0.50", + "overhead_modifier": "generic_opaque_door_0.50", + "interior_modifier": "generic_opaque_door_0.50", "exterior_glass_modifier": "generic_exterior_window_vis_0.64", "interior_glass_modifier": "generic_interior_window_vis_0.88", - "interior_modifier": "generic_opaque_door_0.50", - "overhead_modifier": "generic_opaque_door_0.50", - "type": "DoorConstructionSetAbridged" + "type": "DoorModifierSetAbridged" }, "shade_set": { - "exterior_modifier": "generic_exterior_shade_0.35", "interior_modifier": "generic_interior_shade_0.50", - "type": "ShadeSetAbridged" + "exterior_modifier": "generic_exterior_shade_0.35", + "type": "ShadeModifierSetAbridged" }, "air_boundary_modifier": "air_boundary" } @@ -1797,18 +1797,34 @@ "global_modifier_set": "Generic_Interior_Visible_Modifier_Set", "modifiers": [ { - "modifier": "void", + "modifier": { + "type": "void" + }, + "type": "glass", + "identifier": "generic_interior_window_vis_0.88", + "r_transmissivity": 0.9584154328610596, + "g_transmissivity": 0.9584154328610596, + "b_transmissivity": 0.9584154328610596, + "refraction_index": null, + "dependencies": [] + }, + { + "modifier": { + "type": "void" + }, "type": "plastic", - "identifier": "generic_wall_0.50", - "r_reflectance": 0.5, - "g_reflectance": 0.5, - "b_reflectance": 0.5, + "identifier": "generic_exterior_shade_0.35", + "r_reflectance": 0.35, + "g_reflectance": 0.35, + "b_reflectance": 0.35, "specularity": 0.0, "roughness": 0.0, "dependencies": [] }, { - "modifier": "void", + "modifier": { + "type": "void" + }, "type": "plastic", "identifier": "generic_floor_0.20", "r_reflectance": 0.2, @@ -1819,28 +1835,9 @@ "dependencies": [] }, { - "modifier": "void", - "type": "glass", - "identifier": "generic_exterior_window_vis_0.64", - "r_transmissivity": 0.6975761815384331, - "g_transmissivity": 0.6975761815384331, - "b_transmissivity": 0.6975761815384331, - "refraction_index": null, - "dependencies": [] - }, - { - "modifier": "void", - "type": "plastic", - "identifier": "generic_opaque_door_0.50", - "r_reflectance": 0.5, - "g_reflectance": 0.5, - "b_reflectance": 0.5, - "specularity": 0.0, - "roughness": 0.0, - "dependencies": [] - }, - { - "modifier": "void", + "modifier": { + "type": "void" + }, "type": "plastic", "identifier": "generic_ceiling_0.80", "r_reflectance": 0.8, @@ -1851,9 +1848,11 @@ "dependencies": [] }, { - "modifier": "void", + "modifier": { + "type": "void" + }, "type": "plastic", - "identifier": "generic_interior_shade_0.50", + "identifier": "generic_opaque_door_0.50", "r_reflectance": 0.5, "g_reflectance": 0.5, "b_reflectance": 0.5, @@ -1862,18 +1861,22 @@ "dependencies": [] }, { - "modifier": "void", + "modifier": { + "type": "void" + }, "type": "plastic", - "identifier": "generic_exterior_shade_0.35", - "r_reflectance": 0.35, - "g_reflectance": 0.35, - "b_reflectance": 0.35, + "identifier": "generic_wall_0.50", + "r_reflectance": 0.5, + "g_reflectance": 0.5, + "b_reflectance": 0.5, "specularity": 0.0, "roughness": 0.0, "dependencies": [] }, { - "modifier": "void", + "modifier": { + "type": "void" + }, "type": "glass", "identifier": "air_boundary", "r_transmissivity": 1.0, @@ -1883,12 +1886,27 @@ "dependencies": [] }, { - "modifier": "void", + "modifier": { + "type": "void" + }, + "type": "plastic", + "identifier": "generic_interior_shade_0.50", + "r_reflectance": 0.5, + "g_reflectance": 0.5, + "b_reflectance": 0.5, + "specularity": 0.0, + "roughness": 0.0, + "dependencies": [] + }, + { + "modifier": { + "type": "void" + }, "type": "glass", - "identifier": "generic_interior_window_vis_0.88", - "r_transmissivity": 0.9584154328610596, - "g_transmissivity": 0.9584154328610596, - "b_transmissivity": 0.9584154328610596, + "identifier": "generic_exterior_window_vis_0.64", + "r_transmissivity": 0.6975761815384331, + "g_transmissivity": 0.6975761815384331, + "b_transmissivity": 0.6975761815384331, "refraction_index": null, "dependencies": [] } diff --git a/samples/model/model_complete_multiroom_radiance.json b/samples/model/model_complete_multiroom_radiance.json new file mode 100644 index 0000000..1f1ccc6 --- /dev/null +++ b/samples/model/model_complete_multiroom_radiance.json @@ -0,0 +1,1890 @@ +{ + "type": "Model", + "identifier": "Multi_Room_Radiance_House", + "display_name": "Multi_Room_Radiance_House", + "units": "Meters", + "properties": { + "type": "ModelProperties", + "energy": { + "type": "ModelEnergyProperties", + "terrain_type": "City", + "construction_sets": [ + { + "type": "ConstructionSetAbridged", + "identifier": "Default Generic Construction Set", + "wall_set": { + "type": "WallConstructionSetAbridged", + "exterior_construction": "Generic Exterior Wall", + "interior_construction": "Generic Interior Wall", + "ground_construction": "Generic Underground Wall" + }, + "floor_set": { + "type": "FloorConstructionSetAbridged", + "exterior_construction": "Generic Exposed Floor", + "interior_construction": "Generic Interior Floor", + "ground_construction": "Generic Ground Slab" + }, + "roof_ceiling_set": { + "type": "RoofCeilingConstructionSetAbridged", + "exterior_construction": "Generic Roof", + "interior_construction": "Generic Interior Ceiling", + "ground_construction": "Generic Underground Roof" + }, + "aperture_set": { + "type": "ApertureConstructionSetAbridged", + "window_construction": "Generic Double Pane", + "interior_construction": "Generic Single Pane", + "skylight_construction": "Generic Double Pane", + "operable_construction": "Generic Double Pane" + }, + "door_set": { + "type": "DoorConstructionSetAbridged", + "exterior_construction": "Generic Exterior Door", + "interior_construction": "Generic Interior Door", + "exterior_glass_construction": "Generic Double Pane", + "interior_glass_construction": "Generic Single Pane", + "overhead_construction": "Generic Exterior Door" + }, + "shade_construction": "Generic Shade", + "air_boundary_construction": "Generic Air Boundary" + } + ], + "global_construction_set": "Default Generic Construction Set", + "constructions": [ + { + "type": "ShadeConstruction", + "identifier": "Generic Shade", + "solar_reflectance": 0.35, + "visible_reflectance": 0.35, + "is_specular": false + }, + { + "type": "OpaqueConstructionAbridged", + "identifier": "Generic Interior Wall", + "layers": [ + "Generic Gypsum Board", + "Generic Wall Air Gap", + "Generic Gypsum Board" + ] + }, + { + "type": "OpaqueConstructionAbridged", + "identifier": "Generic Underground Wall", + "layers": [ + "Generic 50mm Insulation", + "Generic HW Concrete", + "Generic Wall Air Gap", + "Generic Gypsum Board" + ] + }, + { + "type": "OpaqueConstructionAbridged", + "identifier": "Generic Exterior Door", + "layers": [ + "Generic Painted Metal", + "Generic 25mm Insulation", + "Generic Painted Metal" + ] + }, + { + "type": "WindowConstructionAbridged", + "identifier": "Generic Double Pane", + "layers": [ + "Generic Low-e Glass", + "Generic Window Air Gap", + "Generic Clear Glass" + ] + }, + { + "type": "OpaqueConstructionAbridged", + "identifier": "Generic Interior Floor", + "layers": [ + "Generic Acoustic Tile", + "Generic Ceiling Air Gap", + "Generic LW Concrete" + ] + }, + { + "type": "OpaqueConstructionAbridged", + "identifier": "Generic Ground Slab", + "layers": [ + "Generic 50mm Insulation", + "Generic HW Concrete" + ] + }, + { + "type": "OpaqueConstructionAbridged", + "identifier": "Generic Roof", + "layers": [ + "Generic Roof Membrane", + "Generic 50mm Insulation", + "Generic LW Concrete", + "Generic Ceiling Air Gap", + "Generic Acoustic Tile" + ] + }, + { + "type": "OpaqueConstructionAbridged", + "identifier": "Generic Exterior Wall", + "layers": [ + "Generic Brick", + "Generic LW Concrete", + "Generic 50mm Insulation", + "Generic Wall Air Gap", + "Generic Gypsum Board" + ] + }, + { + "type": "OpaqueConstructionAbridged", + "identifier": "Generic Interior Ceiling", + "layers": [ + "Generic LW Concrete", + "Generic Ceiling Air Gap", + "Generic Acoustic Tile" + ] + }, + { + "type": "OpaqueConstructionAbridged", + "identifier": "Generic Exposed Floor", + "layers": [ + "Generic Painted Metal", + "Generic Ceiling Air Gap", + "Generic 50mm Insulation", + "Generic LW Concrete" + ] + }, + { + "type": "AirBoundaryConstructionAbridged", + "identifier": "Generic Air Boundary", + "air_mixing_per_area": 0.1, + "air_mixing_schedule": "Always On" + }, + { + "type": "WindowConstructionAbridged", + "identifier": "Generic Single Pane", + "layers": [ + "Generic Clear Glass" + ] + }, + { + "type": "OpaqueConstructionAbridged", + "identifier": "Generic Interior Door", + "layers": [ + "Generic 25mm Wood" + ] + }, + { + "type": "OpaqueConstructionAbridged", + "identifier": "Generic Underground Roof", + "layers": [ + "Generic 50mm Insulation", + "Generic HW Concrete", + "Generic Ceiling Air Gap", + "Generic Acoustic Tile" + ] + } + ], + "materials": [ + { + "type": "EnergyMaterial", + "identifier": "Generic Acoustic Tile", + "roughness": "MediumSmooth", + "thickness": 0.02, + "conductivity": 0.06, + "density": 368.0, + "specific_heat": 590.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.2, + "visible_absorptance": 0.2 + }, + { + "type": "EnergyWindowMaterialGlazing", + "identifier": "Generic Low-e Glass", + "thickness": 0.006, + "solar_transmittance": 0.45, + "solar_reflectance": 0.36, + "solar_reflectance_back": 0.36, + "visible_transmittance": 0.71, + "visible_reflectance": 0.21, + "visible_reflectance_back": 0.21, + "infrared_transmittance": 0.0, + "emissivity": 0.84, + "emissivity_back": 0.047, + "conductivity": 1.0, + "dirt_correction": 1.0, + "solar_diffusing": false + }, + { + "type": "EnergyMaterial", + "identifier": "Generic Roof Membrane", + "roughness": "MediumRough", + "thickness": 0.01, + "conductivity": 0.16, + "density": 1120.0, + "specific_heat": 1460.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.65, + "visible_absorptance": 0.65 + }, + { + "type": "EnergyMaterial", + "identifier": "Generic Wall Air Gap", + "roughness": "Smooth", + "thickness": 0.1, + "conductivity": 0.667, + "density": 1.28, + "specific_heat": 1000.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 + }, + { + "type": "EnergyMaterial", + "identifier": "Generic 25mm Insulation", + "roughness": "MediumRough", + "thickness": 0.05, + "conductivity": 0.03, + "density": 43.0, + "specific_heat": 1210.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 + }, + { + "type": "EnergyMaterial", + "identifier": "Generic Ceiling Air Gap", + "roughness": "Smooth", + "thickness": 0.1, + "conductivity": 0.556, + "density": 1.28, + "specific_heat": 1000.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 + }, + { + "type": "EnergyMaterial", + "identifier": "Generic HW Concrete", + "roughness": "MediumRough", + "thickness": 0.2, + "conductivity": 1.95, + "density": 2240.0, + "specific_heat": 900.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.8, + "visible_absorptance": 0.8 + }, + { + "type": "EnergyMaterial", + "identifier": "Generic Gypsum Board", + "roughness": "MediumSmooth", + "thickness": 0.0127, + "conductivity": 0.16, + "density": 800.0, + "specific_heat": 1090.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.5, + "visible_absorptance": 0.5 + }, + { + "type": "EnergyMaterial", + "identifier": "Generic 50mm Insulation", + "roughness": "MediumRough", + "thickness": 0.05, + "conductivity": 0.03, + "density": 43.0, + "specific_heat": 1210.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 + }, + { + "type": "EnergyMaterial", + "identifier": "Generic LW Concrete", + "roughness": "MediumRough", + "thickness": 0.1, + "conductivity": 0.53, + "density": 1280.0, + "specific_heat": 840.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.8, + "visible_absorptance": 0.8 + }, + { + "type": "EnergyMaterial", + "identifier": "Generic 25mm Wood", + "roughness": "MediumSmooth", + "thickness": 0.0254, + "conductivity": 0.15, + "density": 608.0, + "specific_heat": 1630.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.5, + "visible_absorptance": 0.5 + }, + { + "type": "EnergyMaterial", + "identifier": "Generic Painted Metal", + "roughness": "Smooth", + "thickness": 0.0015, + "conductivity": 45.0, + "density": 7690.0, + "specific_heat": 410.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.5, + "visible_absorptance": 0.5 + }, + { + "type": "EnergyWindowMaterialGas", + "identifier": "Generic Window Air Gap", + "thickness": 0.0127, + "gas_type": "Air" + }, + { + "type": "EnergyMaterial", + "identifier": "Generic Brick", + "roughness": "MediumRough", + "thickness": 0.1, + "conductivity": 0.9, + "density": 1920.0, + "specific_heat": 790.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.65, + "visible_absorptance": 0.65 + }, + { + "type": "EnergyWindowMaterialGlazing", + "identifier": "Generic Clear Glass", + "thickness": 0.006, + "solar_transmittance": 0.77, + "solar_reflectance": 0.07, + "solar_reflectance_back": 0.07, + "visible_transmittance": 0.88, + "visible_reflectance": 0.08, + "visible_reflectance_back": 0.08, + "infrared_transmittance": 0.0, + "emissivity": 0.84, + "emissivity_back": 0.84, + "conductivity": 1.0, + "dirt_correction": 1.0, + "solar_diffusing": false + } + ], + "hvacs": [], + "program_types": [], + "schedules": [ + { + "type": "ScheduleRulesetAbridged", + "identifier": "Always On", + "day_schedules": [ + { + "type": "ScheduleDay", + "identifier": "Always On_Day Schedule", + "values": [ + 1.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + } + ], + "default_day_schedule": "Always On_Day Schedule", + "schedule_type_limit": "Fractional" + } + ], + "schedule_type_limits": [ + { + "type": "ScheduleTypeLimit", + "identifier": "Fractional", + "lower_limit": 0.0, + "upper_limit": 1.0, + "numeric_type": "Continuous", + "unit_type": "Dimensionless" + } + ] + }, + "radiance": { + "type": "ModelRadianceProperties", + "modifier_sets": [ + { + "type": "ModifierSetAbridged", + "identifier": "Generic_Interior_Visible_Modifier_Set", + "wall_set": { + "interior_modifier": "generic_wall_0.50", + "exterior_modifier": "generic_wall_0.50", + "type": "WallModifierSetAbridged" + }, + "floor_set": { + "interior_modifier": "generic_floor_0.20", + "exterior_modifier": "generic_floor_0.20", + "type": "FloorModifierSetAbridged" + }, + "roof_ceiling_set": { + "interior_modifier": "generic_ceiling_0.80", + "exterior_modifier": "generic_ceiling_0.80", + "type": "RoofCeilingModifierSetAbridged" + }, + "aperture_set": { + "interior_modifier": "generic_interior_window_vis_0.88", + "skylight_modifier": "generic_exterior_window_vis_0.64", + "operable_modifier": "generic_exterior_window_vis_0.64", + "type": "ApertureModifierSetAbridged", + "window_modifier": "generic_exterior_window_vis_0.64" + }, + "door_set": { + "exterior_modifier": "generic_opaque_door_0.50", + "overhead_modifier": "generic_opaque_door_0.50", + "interior_modifier": "generic_opaque_door_0.50", + "exterior_glass_modifier": "generic_exterior_window_vis_0.64", + "interior_glass_modifier": "generic_interior_window_vis_0.88", + "type": "DoorModifierSetAbridged" + }, + "shade_set": { + "interior_modifier": "generic_interior_shade_0.50", + "exterior_modifier": "generic_exterior_shade_0.35", + "type": "ShadeModifierSetAbridged" + }, + "air_boundary_modifier": "air_boundary" + }, + { + "type": "ModifierSetAbridged", + "identifier": "Attic_Modifier_Set", + "wall_set": { + "interior_modifier": null, + "exterior_modifier": null, + "type": "WallModifierSetAbridged" + }, + "floor_set": { + "interior_modifier": null, + "exterior_modifier": null, + "type": "FloorModifierSetAbridged" + }, + "roof_ceiling_set": { + "interior_modifier": null, + "exterior_modifier": "PolyIso", + "type": "RoofCeilingModifierSetAbridged" + }, + "aperture_set": { + "interior_modifier": null, + "skylight_modifier": null, + "operable_modifier": null, + "type": "ApertureModifierSetAbridged", + "window_modifier": null + }, + "door_set": { + "exterior_modifier": null, + "overhead_modifier": null, + "interior_modifier": null, + "exterior_glass_modifier": null, + "interior_glass_modifier": null, + "type": "DoorModifierSetAbridged" + }, + "shade_set": { + "interior_modifier": null, + "exterior_modifier": null, + "type": "ShadeModifierSetAbridged" + }, + "air_boundary_modifier": null + } + ], + "global_modifier_set": "Generic_Interior_Visible_Modifier_Set", + "modifiers": [ + { + "modifier": { + "type": "void" + }, + "type": "glass", + "identifier": "generic_interior_window_vis_0.88", + "r_transmissivity": 0.9584154328610596, + "g_transmissivity": 0.9584154328610596, + "b_transmissivity": 0.9584154328610596, + "refraction_index": null, + "dependencies": [] + }, + { + "modifier": { + "type": "void" + }, + "type": "plastic", + "identifier": "generic_exterior_shade_0.35", + "r_reflectance": 0.35, + "g_reflectance": 0.35, + "b_reflectance": 0.35, + "specularity": 0.0, + "roughness": 0.0, + "dependencies": [] + }, + { + "modifier": { + "type": "void" + }, + "type": "plastic", + "identifier": "PolyIso", + "r_reflectance": 0.45, + "g_reflectance": 0.45, + "b_reflectance": 0.45, + "specularity": 0.0, + "roughness": 0.0, + "dependencies": [] + }, + { + "modifier": { + "type": "void" + }, + "type": "plastic", + "identifier": "generic_floor_0.20", + "r_reflectance": 0.2, + "g_reflectance": 0.2, + "b_reflectance": 0.2, + "specularity": 0.0, + "roughness": 0.0, + "dependencies": [] + }, + { + "modifier": { + "type": "void" + }, + "type": "plastic", + "identifier": "generic_ceiling_0.80", + "r_reflectance": 0.8, + "g_reflectance": 0.8, + "b_reflectance": 0.8, + "specularity": 0.0, + "roughness": 0.0, + "dependencies": [] + }, + { + "modifier": { + "type": "void" + }, + "type": "plastic", + "identifier": "generic_opaque_door_0.50", + "r_reflectance": 0.5, + "g_reflectance": 0.5, + "b_reflectance": 0.5, + "specularity": 0.0, + "roughness": 0.0, + "dependencies": [] + }, + { + "modifier": { + "type": "void" + }, + "type": "plastic", + "identifier": "generic_wall_0.50", + "r_reflectance": 0.5, + "g_reflectance": 0.5, + "b_reflectance": 0.5, + "specularity": 0.0, + "roughness": 0.0, + "dependencies": [] + }, + { + "modifier": { + "type": "void" + }, + "type": "glass", + "identifier": "air_boundary", + "r_transmissivity": 1.0, + "g_transmissivity": 1.0, + "b_transmissivity": 1.0, + "refraction_index": null, + "dependencies": [] + }, + { + "modifier": { + "type": "void" + }, + "type": "plastic", + "identifier": "generic_interior_shade_0.50", + "r_reflectance": 0.5, + "g_reflectance": 0.5, + "b_reflectance": 0.5, + "specularity": 0.0, + "roughness": 0.0, + "dependencies": [] + }, + { + "modifier": { + "type": "void" + }, + "type": "glass", + "identifier": "Triple_Pane_0.35", + "r_transmissivity": 0.38172294125333217, + "g_transmissivity": 0.38172294125333217, + "b_transmissivity": 0.38172294125333217, + "refraction_index": null, + "dependencies": [] + }, + { + "modifier": { + "type": "void" + }, + "type": "glass", + "identifier": "generic_exterior_window_vis_0.64", + "r_transmissivity": 0.6975761815384331, + "g_transmissivity": 0.6975761815384331, + "b_transmissivity": 0.6975761815384331, + "refraction_index": null, + "dependencies": [] + } + ] + } + }, + "rooms": [ + { + "type": "Room", + "identifier": "First_Floor", + "display_name": "First_Floor", + "properties": { + "type": "RoomPropertiesAbridged", + "energy": { + "type": "RoomEnergyPropertiesAbridged" + }, + "radiance": { + "type": "RoomRadiancePropertiesAbridged" + } + }, + "faces": [ + { + "type": "Face", + "identifier": "First_Floor_Bottom", + "display_name": "First_Floor_Bottom", + "properties": { + "type": "FacePropertiesAbridged", + "energy": { + "type": "FaceEnergyPropertiesAbridged" + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "boundary": [ + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 10.0, + 0.0 + ], + [ + 10.0, + 10.0, + 0.0 + ], + [ + 10.0, + 0.0, + 0.0 + ] + ] + }, + "face_type": "Floor", + "boundary_condition": { + "type": "Ground" + } + }, + { + "type": "Face", + "identifier": "First_Floor_Front", + "display_name": "First_Floor_Front", + "properties": { + "type": "FacePropertiesAbridged", + "energy": { + "type": "FaceEnergyPropertiesAbridged" + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "boundary": [ + [ + 10.0, + 10.0, + 3.0 + ], + [ + 10.0, + 10.0, + 0.0 + ], + [ + 0.0, + 10.0, + 0.0 + ], + [ + 0.0, + 10.0, + 3.0 + ] + ] + }, + "face_type": "Wall", + "boundary_condition": { + "type": "Outdoors", + "sun_exposure": true, + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + } + }, + "apertures": [ + { + "type": "Aperture", + "identifier": "First_Floor_Front_Glz0", + "display_name": "First_Floor_Front_Glz0", + "properties": { + "type": "AperturePropertiesAbridged", + "energy": { + "type": "ApertureEnergyPropertiesAbridged" + }, + "radiance": { + "type": "ApertureRadiancePropertiesAbridged", + "modifier": "Triple_Pane_0.35" + } + }, + "geometry": { + "type": "Face3D", + "boundary": [ + [ + 7.23606797749979, + 10.0, + 2.170820393249937 + ], + [ + 7.23606797749979, + 10.0, + 0.8291796067500631 + ], + [ + 2.76393202250021, + 10.0, + 0.8291796067500631 + ], + [ + 2.76393202250021, + 10.0, + 2.170820393249937 + ] + ] + }, + "is_operable": false, + "boundary_condition": { + "type": "Outdoors", + "sun_exposure": true, + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + } + } + } + ] + }, + { + "type": "Face", + "identifier": "First_Floor_Right", + "display_name": "First_Floor_Right", + "properties": { + "type": "FacePropertiesAbridged", + "energy": { + "type": "FaceEnergyPropertiesAbridged" + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "boundary": [ + [ + 10.0, + 0.0, + 3.0 + ], + [ + 10.0, + 0.0, + 0.0 + ], + [ + 10.0, + 10.0, + 0.0 + ], + [ + 10.0, + 10.0, + 3.0 + ] + ] + }, + "face_type": "Wall", + "boundary_condition": { + "type": "Outdoors", + "sun_exposure": true, + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + } + }, + "apertures": [ + { + "type": "Aperture", + "identifier": "First_Floor_Right_Glz0", + "display_name": "First_Floor_Right_Glz0", + "properties": { + "type": "AperturePropertiesAbridged", + "energy": { + "type": "ApertureEnergyPropertiesAbridged" + }, + "radiance": { + "type": "ApertureRadiancePropertiesAbridged", + "modifier": "Triple_Pane_0.35" + } + }, + "geometry": { + "type": "Face3D", + "boundary": [ + [ + 10.0, + 2.76393202250021, + 2.170820393249937 + ], + [ + 10.0, + 2.76393202250021, + 0.8291796067500631 + ], + [ + 10.0, + 7.23606797749979, + 0.8291796067500631 + ], + [ + 10.0, + 7.23606797749979, + 2.170820393249937 + ] + ] + }, + "is_operable": false, + "boundary_condition": { + "type": "Outdoors", + "sun_exposure": true, + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + } + } + } + ] + }, + { + "type": "Face", + "identifier": "First_Floor_Back", + "display_name": "First_Floor_Back", + "properties": { + "type": "FacePropertiesAbridged", + "energy": { + "type": "FaceEnergyPropertiesAbridged" + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "boundary": [ + [ + 0.0, + 0.0, + 3.0 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 10.0, + 0.0, + 0.0 + ], + [ + 10.0, + 0.0, + 3.0 + ] + ] + }, + "face_type": "Wall", + "boundary_condition": { + "type": "Outdoors", + "sun_exposure": true, + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + } + }, + "apertures": [ + { + "type": "Aperture", + "identifier": "First_Floor_Back_Glz0", + "display_name": "First_Floor_Back_Glz0", + "properties": { + "type": "AperturePropertiesAbridged", + "energy": { + "type": "ApertureEnergyPropertiesAbridged" + }, + "radiance": { + "type": "ApertureRadiancePropertiesAbridged", + "modifier": "Triple_Pane_0.35" + } + }, + "geometry": { + "type": "Face3D", + "boundary": [ + [ + 2.76393202250021, + 0.0, + 2.170820393249937 + ], + [ + 2.76393202250021, + 0.0, + 0.8291796067500631 + ], + [ + 7.23606797749979, + 0.0, + 0.8291796067500631 + ], + [ + 7.23606797749979, + 0.0, + 2.170820393249937 + ] + ] + }, + "is_operable": false, + "boundary_condition": { + "type": "Outdoors", + "sun_exposure": true, + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + } + } + } + ] + }, + { + "type": "Face", + "identifier": "First_Floor_Left", + "display_name": "First_Floor_Left", + "properties": { + "type": "FacePropertiesAbridged", + "energy": { + "type": "FaceEnergyPropertiesAbridged" + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "boundary": [ + [ + 0.0, + 10.0, + 3.0 + ], + [ + 0.0, + 10.0, + 0.0 + ], + [ + 0.0, + 0.0, + 0.0 + ], + [ + 0.0, + 0.0, + 3.0 + ] + ] + }, + "face_type": "Wall", + "boundary_condition": { + "type": "Outdoors", + "sun_exposure": true, + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + } + }, + "apertures": [ + { + "type": "Aperture", + "identifier": "First_Floor_Left_Glz0", + "display_name": "First_Floor_Left_Glz0", + "properties": { + "type": "AperturePropertiesAbridged", + "energy": { + "type": "ApertureEnergyPropertiesAbridged" + }, + "radiance": { + "type": "ApertureRadiancePropertiesAbridged", + "modifier": "Triple_Pane_0.35" + } + }, + "geometry": { + "type": "Face3D", + "boundary": [ + [ + 0.0, + 7.23606797749979, + 2.170820393249937 + ], + [ + 0.0, + 7.23606797749979, + 0.8291796067500631 + ], + [ + 0.0, + 2.76393202250021, + 0.8291796067500631 + ], + [ + 0.0, + 2.76393202250021, + 2.170820393249937 + ] + ] + }, + "is_operable": false, + "boundary_condition": { + "type": "Outdoors", + "sun_exposure": true, + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + } + } + } + ] + }, + { + "type": "Face", + "identifier": "First_Floor_Top", + "display_name": "First_Floor_Top", + "properties": { + "type": "FacePropertiesAbridged", + "energy": { + "type": "FaceEnergyPropertiesAbridged" + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "boundary": [ + [ + 10.0, + 0.0, + 3.0 + ], + [ + 10.0, + 10.0, + 3.0 + ], + [ + 0.0, + 10.0, + 3.0 + ], + [ + 0.0, + 0.0, + 3.0 + ] + ] + }, + "face_type": "RoofCeiling", + "boundary_condition": { + "type": "Surface", + "boundary_condition_objects": [ + "Second_Floor_Bottom", + "Second_Floor" + ] + } + } + ] + }, + { + "type": "Room", + "identifier": "Second_Floor", + "display_name": "Second_Floor", + "properties": { + "type": "RoomPropertiesAbridged", + "energy": { + "type": "RoomEnergyPropertiesAbridged" + }, + "radiance": { + "type": "RoomRadiancePropertiesAbridged" + } + }, + "faces": [ + { + "type": "Face", + "identifier": "Second_Floor_Bottom", + "display_name": "Second_Floor_Bottom", + "properties": { + "type": "FacePropertiesAbridged", + "energy": { + "type": "FaceEnergyPropertiesAbridged" + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "boundary": [ + [ + 0.0, + 0.0, + 3.0 + ], + [ + 0.0, + 10.0, + 3.0 + ], + [ + 10.0, + 10.0, + 3.0 + ], + [ + 10.0, + 0.0, + 3.0 + ] + ] + }, + "face_type": "Floor", + "boundary_condition": { + "type": "Surface", + "boundary_condition_objects": [ + "First_Floor_Top", + "First_Floor" + ] + } + }, + { + "type": "Face", + "identifier": "Second_Floor_Front", + "display_name": "Second_Floor_Front", + "properties": { + "type": "FacePropertiesAbridged", + "energy": { + "type": "FaceEnergyPropertiesAbridged" + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "boundary": [ + [ + 10.0, + 10.0, + 6.0 + ], + [ + 10.0, + 10.0, + 3.0 + ], + [ + 0.0, + 10.0, + 3.0 + ], + [ + 0.0, + 10.0, + 6.0 + ] + ] + }, + "face_type": "Wall", + "boundary_condition": { + "type": "Outdoors", + "sun_exposure": true, + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + } + }, + "apertures": [ + { + "type": "Aperture", + "identifier": "Second_Floor_Front_Glz0", + "display_name": "Second_Floor_Front_Glz0", + "properties": { + "type": "AperturePropertiesAbridged", + "energy": { + "type": "ApertureEnergyPropertiesAbridged" + }, + "radiance": { + "type": "ApertureRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "boundary": [ + [ + 7.23606797749979, + 10.0, + 5.170820393249937 + ], + [ + 7.23606797749979, + 10.0, + 3.829179606750063 + ], + [ + 2.76393202250021, + 10.0, + 3.829179606750063 + ], + [ + 2.76393202250021, + 10.0, + 5.170820393249937 + ] + ] + }, + "is_operable": false, + "boundary_condition": { + "type": "Outdoors", + "sun_exposure": true, + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + } + } + } + ] + }, + { + "type": "Face", + "identifier": "Second_Floor_Right", + "display_name": "Second_Floor_Right", + "properties": { + "type": "FacePropertiesAbridged", + "energy": { + "type": "FaceEnergyPropertiesAbridged" + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "boundary": [ + [ + 10.0, + 0.0, + 6.0 + ], + [ + 10.0, + 0.0, + 3.0 + ], + [ + 10.0, + 10.0, + 3.0 + ], + [ + 10.0, + 10.0, + 6.0 + ] + ] + }, + "face_type": "Wall", + "boundary_condition": { + "type": "Outdoors", + "sun_exposure": true, + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + } + }, + "apertures": [ + { + "type": "Aperture", + "identifier": "Second_Floor_Right_Glz0", + "display_name": "Second_Floor_Right_Glz0", + "properties": { + "type": "AperturePropertiesAbridged", + "energy": { + "type": "ApertureEnergyPropertiesAbridged" + }, + "radiance": { + "type": "ApertureRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "boundary": [ + [ + 10.0, + 2.76393202250021, + 5.170820393249937 + ], + [ + 10.0, + 2.76393202250021, + 3.829179606750063 + ], + [ + 10.0, + 7.23606797749979, + 3.829179606750063 + ], + [ + 10.0, + 7.23606797749979, + 5.170820393249937 + ] + ] + }, + "is_operable": false, + "boundary_condition": { + "type": "Outdoors", + "sun_exposure": true, + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + } + } + } + ] + }, + { + "type": "Face", + "identifier": "Second_Floor_Back", + "display_name": "Second_Floor_Back", + "properties": { + "type": "FacePropertiesAbridged", + "energy": { + "type": "FaceEnergyPropertiesAbridged" + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "boundary": [ + [ + 0.0, + 0.0, + 6.0 + ], + [ + 0.0, + 0.0, + 3.0 + ], + [ + 10.0, + 0.0, + 3.0 + ], + [ + 10.0, + 0.0, + 6.0 + ] + ] + }, + "face_type": "Wall", + "boundary_condition": { + "type": "Outdoors", + "sun_exposure": true, + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + } + }, + "apertures": [ + { + "type": "Aperture", + "identifier": "Second_Floor_Back_Glz0", + "display_name": "Second_Floor_Back_Glz0", + "properties": { + "type": "AperturePropertiesAbridged", + "energy": { + "type": "ApertureEnergyPropertiesAbridged" + }, + "radiance": { + "type": "ApertureRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "boundary": [ + [ + 2.76393202250021, + 0.0, + 5.170820393249937 + ], + [ + 2.76393202250021, + 0.0, + 3.829179606750063 + ], + [ + 7.23606797749979, + 0.0, + 3.829179606750063 + ], + [ + 7.23606797749979, + 0.0, + 5.170820393249937 + ] + ] + }, + "is_operable": false, + "boundary_condition": { + "type": "Outdoors", + "sun_exposure": true, + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + } + } + } + ] + }, + { + "type": "Face", + "identifier": "Second_Floor_Left", + "display_name": "Second_Floor_Left", + "properties": { + "type": "FacePropertiesAbridged", + "energy": { + "type": "FaceEnergyPropertiesAbridged" + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "boundary": [ + [ + 0.0, + 10.0, + 6.0 + ], + [ + 0.0, + 10.0, + 3.0 + ], + [ + 0.0, + 0.0, + 3.0 + ], + [ + 0.0, + 0.0, + 6.0 + ] + ] + }, + "face_type": "Wall", + "boundary_condition": { + "type": "Outdoors", + "sun_exposure": true, + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + } + }, + "apertures": [ + { + "type": "Aperture", + "identifier": "Second_Floor_Left_Glz0", + "display_name": "Second_Floor_Left_Glz0", + "properties": { + "type": "AperturePropertiesAbridged", + "energy": { + "type": "ApertureEnergyPropertiesAbridged" + }, + "radiance": { + "type": "ApertureRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "boundary": [ + [ + 0.0, + 7.23606797749979, + 5.170820393249937 + ], + [ + 0.0, + 7.23606797749979, + 3.829179606750063 + ], + [ + 0.0, + 2.76393202250021, + 3.829179606750063 + ], + [ + 0.0, + 2.76393202250021, + 5.170820393249937 + ] + ] + }, + "is_operable": false, + "boundary_condition": { + "type": "Outdoors", + "sun_exposure": true, + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + } + } + } + ] + }, + { + "type": "Face", + "identifier": "Second_Floor_Top", + "display_name": "Second_Floor_Top", + "properties": { + "type": "FacePropertiesAbridged", + "energy": { + "type": "FaceEnergyPropertiesAbridged" + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "boundary": [ + [ + 10.0, + 0.0, + 6.0 + ], + [ + 10.0, + 10.0, + 6.0 + ], + [ + 0.0, + 10.0, + 6.0 + ], + [ + 0.0, + 0.0, + 6.0 + ] + ] + }, + "face_type": "RoofCeiling", + "boundary_condition": { + "type": "Surface", + "boundary_condition_objects": [ + "AtticFace1", + "Attic" + ] + } + } + ] + }, + { + "type": "Room", + "identifier": "Attic", + "display_name": "Attic", + "properties": { + "type": "RoomPropertiesAbridged", + "energy": { + "type": "RoomEnergyPropertiesAbridged" + }, + "radiance": { + "type": "RoomRadiancePropertiesAbridged", + "modifier_set": "Attic_Modifier_Set" + } + }, + "faces": [ + { + "type": "Face", + "identifier": "AtticFace1", + "display_name": "AtticFace1", + "properties": { + "type": "FacePropertiesAbridged", + "energy": { + "type": "FaceEnergyPropertiesAbridged" + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "boundary": [ + [ + 0.0, + 0.0, + 6.0 + ], + [ + 0.0, + 10.0, + 6.0 + ], + [ + 10.0, + 10.0, + 6.0 + ], + [ + 10.0, + 0.0, + 6.0 + ] + ] + }, + "face_type": "Floor", + "boundary_condition": { + "type": "Surface", + "boundary_condition_objects": [ + "Second_Floor_Top", + "Second_Floor" + ] + } + }, + { + "type": "Face", + "identifier": "AtticFace2", + "display_name": "AtticFace2", + "properties": { + "type": "FacePropertiesAbridged", + "energy": { + "type": "FaceEnergyPropertiesAbridged" + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "boundary": [ + [ + 5.0, + 10.0, + 9.0 + ], + [ + 0.0, + 10.0, + 6.0 + ], + [ + 0.0, + 0.0, + 6.0 + ], + [ + 5.0, + 0.0, + 9.0 + ] + ] + }, + "face_type": "Wall", + "boundary_condition": { + "type": "Outdoors", + "sun_exposure": true, + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + } + } + }, + { + "type": "Face", + "identifier": "AtticFace3", + "display_name": "AtticFace3", + "properties": { + "type": "FacePropertiesAbridged", + "energy": { + "type": "FaceEnergyPropertiesAbridged" + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "boundary": [ + [ + 5.0, + 0.0, + 9.0 + ], + [ + 10.0, + 0.0, + 6.0 + ], + [ + 10.0, + 10.0, + 6.0 + ], + [ + 5.0, + 10.0, + 9.0 + ] + ] + }, + "face_type": "Wall", + "boundary_condition": { + "type": "Outdoors", + "sun_exposure": true, + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + } + } + }, + { + "type": "Face", + "identifier": "AtticFace4", + "display_name": "AtticFace4", + "properties": { + "type": "FacePropertiesAbridged", + "energy": { + "type": "FaceEnergyPropertiesAbridged" + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "boundary": [ + [ + 0.0, + 0.0, + 6.0 + ], + [ + 10.0, + 0.0, + 6.0 + ], + [ + 5.0, + 0.0, + 9.0 + ] + ] + }, + "face_type": "Wall", + "boundary_condition": { + "type": "Outdoors", + "sun_exposure": true, + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + } + } + }, + { + "type": "Face", + "identifier": "AtticFace5", + "display_name": "AtticFace5", + "properties": { + "type": "FacePropertiesAbridged", + "energy": { + "type": "FaceEnergyPropertiesAbridged" + }, + "radiance": { + "type": "FaceRadiancePropertiesAbridged" + } + }, + "geometry": { + "type": "Face3D", + "boundary": [ + [ + 10.0, + 10.0, + 6.0 + ], + [ + 0.0, + 10.0, + 6.0 + ], + [ + 5.0, + 10.0, + 9.0 + ] + ] + }, + "face_type": "Wall", + "boundary_condition": { + "type": "Outdoors", + "sun_exposure": true, + "wind_exposure": true, + "view_factor": { + "type": "Autocalculate" + } + } + } + ] + } + ] +} \ No newline at end of file diff --git a/samples/model/model_complete_office_floor.json b/samples/model/model_complete_office_floor.json index 37fddc6..379fafa 100644 --- a/samples/model/model_complete_office_floor.json +++ b/samples/model/model_complete_office_floor.json @@ -51,22 +51,39 @@ ], "global_construction_set": "Default Generic Construction Set", "constructions": [ + { + "type": "ShadeConstruction", + "identifier": "Generic Shade", + "solar_reflectance": 0.35, + "visible_reflectance": 0.35, + "is_specular": false + }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exterior Door", + "identifier": "Generic Interior Wall", "layers": [ - "Generic Painted Metal", - "Generic 25mm Insulation", - "Generic Painted Metal" + "Generic Gypsum Board", + "Generic Wall Air Gap", + "Generic Gypsum Board" ] }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Floor", + "identifier": "Generic Underground Wall", "layers": [ - "Generic Acoustic Tile", - "Generic Ceiling Air Gap", - "Generic LW Concrete" + "Generic 50mm Insulation", + "Generic HW Concrete", + "Generic Wall Air Gap", + "Generic Gypsum Board" + ] + }, + { + "type": "OpaqueConstructionAbridged", + "identifier": "Generic Exterior Door", + "layers": [ + "Generic Painted Metal", + "Generic 25mm Insulation", + "Generic Painted Metal" ] }, { @@ -80,13 +97,11 @@ }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exterior Wall", + "identifier": "Generic Interior Floor", "layers": [ - "Generic Brick", - "Generic LW Concrete", - "Generic 50mm Insulation", - "Generic Wall Air Gap", - "Generic Gypsum Board" + "Generic Acoustic Tile", + "Generic Ceiling Air Gap", + "Generic LW Concrete" ] }, { @@ -97,22 +112,6 @@ "Generic HW Concrete" ] }, - { - "type": "AirBoundaryConstructionAbridged", - "identifier": "Generic Air Boundary", - "air_mixing_per_area": 0.1, - "air_mixing_schedule": "Always On" - }, - { - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exposed Floor", - "layers": [ - "Generic Painted Metal", - "Generic Ceiling Air Gap", - "Generic 50mm Insulation", - "Generic LW Concrete" - ] - }, { "type": "OpaqueConstructionAbridged", "identifier": "Generic Roof", @@ -126,30 +125,40 @@ }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Underground Roof", + "identifier": "Generic Exterior Wall", "layers": [ + "Generic Brick", + "Generic LW Concrete", "Generic 50mm Insulation", - "Generic HW Concrete", - "Generic Ceiling Air Gap", - "Generic Acoustic Tile" + "Generic Wall Air Gap", + "Generic Gypsum Board" ] }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Door", + "identifier": "Generic Interior Ceiling", "layers": [ - "Generic 25mm Wood" + "Generic LW Concrete", + "Generic Ceiling Air Gap", + "Generic Acoustic Tile" ] }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Wall", + "identifier": "Generic Exposed Floor", "layers": [ - "Generic Gypsum Board", - "Generic Wall Air Gap", - "Generic Gypsum Board" + "Generic Painted Metal", + "Generic Ceiling Air Gap", + "Generic 50mm Insulation", + "Generic LW Concrete" ] }, + { + "type": "AirBoundaryConstructionAbridged", + "identifier": "Generic Air Boundary", + "air_mixing_per_area": 0.1, + "air_mixing_schedule": "Always On" + }, { "type": "WindowConstructionAbridged", "identifier": "Generic Single Pane", @@ -159,43 +168,51 @@ }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Ceiling", + "identifier": "Generic Interior Door", "layers": [ - "Generic LW Concrete", - "Generic Ceiling Air Gap", - "Generic Acoustic Tile" + "Generic 25mm Wood" ] }, - { - "type": "ShadeConstruction", - "identifier": "Generic Shade", - "solar_reflectance": 0.35, - "visible_reflectance": 0.35, - "is_specular": false - }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Underground Wall", + "identifier": "Generic Underground Roof", "layers": [ "Generic 50mm Insulation", "Generic HW Concrete", - "Generic Wall Air Gap", - "Generic Gypsum Board" + "Generic Ceiling Air Gap", + "Generic Acoustic Tile" ] } ], "materials": [ { "type": "EnergyMaterial", - "identifier": "Generic 25mm Insulation", - "roughness": "MediumRough", - "thickness": 0.05, - "conductivity": 0.03, - "density": 43.0, - "specific_heat": 1210.0, + "identifier": "Generic Acoustic Tile", + "roughness": "MediumSmooth", + "thickness": 0.02, + "conductivity": 0.06, + "density": 368.0, + "specific_heat": 590.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 + "solar_absorptance": 0.2, + "visible_absorptance": 0.2 + }, + { + "type": "EnergyWindowMaterialGlazing", + "identifier": "Generic Low-e Glass", + "thickness": 0.006, + "solar_transmittance": 0.45, + "solar_reflectance": 0.36, + "solar_reflectance_back": 0.36, + "visible_transmittance": 0.71, + "visible_reflectance": 0.21, + "visible_reflectance_back": 0.21, + "infrared_transmittance": 0.0, + "emissivity": 0.84, + "emissivity_back": 0.047, + "conductivity": 1.0, + "dirt_correction": 1.0, + "solar_diffusing": false }, { "type": "EnergyMaterial", @@ -211,27 +228,27 @@ }, { "type": "EnergyMaterial", - "identifier": "Generic Painted Metal", + "identifier": "Generic Wall Air Gap", "roughness": "Smooth", - "thickness": 0.0015, - "conductivity": 45.0, - "density": 7690.0, - "specific_heat": 410.0, + "thickness": 0.1, + "conductivity": 0.667, + "density": 1.28, + "specific_heat": 1000.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.5, - "visible_absorptance": 0.5 + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 }, { "type": "EnergyMaterial", - "identifier": "Generic 25mm Wood", - "roughness": "MediumSmooth", - "thickness": 0.0254, - "conductivity": 0.15, - "density": 608.0, - "specific_heat": 1630.0, + "identifier": "Generic 25mm Insulation", + "roughness": "MediumRough", + "thickness": 0.05, + "conductivity": 0.03, + "density": 43.0, + "specific_heat": 1210.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.5, - "visible_absorptance": 0.5 + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 }, { "type": "EnergyMaterial", @@ -245,52 +262,41 @@ "solar_absorptance": 0.7, "visible_absorptance": 0.7 }, - { - "type": "EnergyWindowMaterialGas", - "identifier": "Generic Window Air Gap", - "thickness": 0.0127, - "gas_type": "Air" - }, { "type": "EnergyMaterial", - "identifier": "Generic Wall Air Gap", - "roughness": "Smooth", - "thickness": 0.1, - "conductivity": 0.667, - "density": 1.28, - "specific_heat": 1000.0, + "identifier": "Generic HW Concrete", + "roughness": "MediumRough", + "thickness": 0.2, + "conductivity": 1.95, + "density": 2240.0, + "specific_heat": 900.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 + "solar_absorptance": 0.8, + "visible_absorptance": 0.8 }, { - "type": "EnergyWindowMaterialGlazing", - "identifier": "Generic Clear Glass", - "thickness": 0.006, - "solar_transmittance": 0.77, - "solar_reflectance": 0.07, - "solar_reflectance_back": 0.07, - "visible_transmittance": 0.88, - "visible_reflectance": 0.08, - "visible_reflectance_back": 0.08, - "infrared_transmittance": 0.0, - "emissivity": 0.84, - "emissivity_back": 0.84, - "conductivity": 1.0, - "dirt_correction": 1.0, - "solar_diffusing": false + "type": "EnergyMaterial", + "identifier": "Generic Gypsum Board", + "roughness": "MediumSmooth", + "thickness": 0.0127, + "conductivity": 0.16, + "density": 800.0, + "specific_heat": 1090.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.5, + "visible_absorptance": 0.5 }, { "type": "EnergyMaterial", - "identifier": "Generic Brick", + "identifier": "Generic 50mm Insulation", "roughness": "MediumRough", - "thickness": 0.1, - "conductivity": 0.9, - "density": 1920.0, - "specific_heat": 790.0, + "thickness": 0.05, + "conductivity": 0.03, + "density": 43.0, + "specific_heat": 1210.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.65, - "visible_absorptance": 0.65 + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 }, { "type": "EnergyMaterial", @@ -306,68 +312,62 @@ }, { "type": "EnergyMaterial", - "identifier": "Generic Gypsum Board", + "identifier": "Generic 25mm Wood", "roughness": "MediumSmooth", - "thickness": 0.0127, - "conductivity": 0.16, - "density": 800.0, - "specific_heat": 1090.0, + "thickness": 0.0254, + "conductivity": 0.15, + "density": 608.0, + "specific_heat": 1630.0, "thermal_absorptance": 0.9, "solar_absorptance": 0.5, "visible_absorptance": 0.5 }, { "type": "EnergyMaterial", - "identifier": "Generic HW Concrete", - "roughness": "MediumRough", - "thickness": 0.2, - "conductivity": 1.95, - "density": 2240.0, - "specific_heat": 900.0, + "identifier": "Generic Painted Metal", + "roughness": "Smooth", + "thickness": 0.0015, + "conductivity": 45.0, + "density": 7690.0, + "specific_heat": 410.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.8, - "visible_absorptance": 0.8 - }, - { - "type": "EnergyWindowMaterialGlazing", - "identifier": "Generic Low-e Glass", - "thickness": 0.006, - "solar_transmittance": 0.45, - "solar_reflectance": 0.36, - "solar_reflectance_back": 0.36, - "visible_transmittance": 0.71, - "visible_reflectance": 0.21, - "visible_reflectance_back": 0.21, - "infrared_transmittance": 0.0, - "emissivity": 0.84, - "emissivity_back": 0.047, - "conductivity": 1.0, - "dirt_correction": 1.0, - "solar_diffusing": false + "solar_absorptance": 0.5, + "visible_absorptance": 0.5 }, { - "type": "EnergyMaterial", - "identifier": "Generic Acoustic Tile", - "roughness": "MediumSmooth", - "thickness": 0.02, - "conductivity": 0.06, - "density": 368.0, - "specific_heat": 590.0, - "thermal_absorptance": 0.9, - "solar_absorptance": 0.2, - "visible_absorptance": 0.2 + "type": "EnergyWindowMaterialGas", + "identifier": "Generic Window Air Gap", + "thickness": 0.0127, + "gas_type": "Air" }, { "type": "EnergyMaterial", - "identifier": "Generic 50mm Insulation", + "identifier": "Generic Brick", "roughness": "MediumRough", - "thickness": 0.05, - "conductivity": 0.03, - "density": 43.0, - "specific_heat": 1210.0, + "thickness": 0.1, + "conductivity": 0.9, + "density": 1920.0, + "specific_heat": 790.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 + "solar_absorptance": 0.65, + "visible_absorptance": 0.65 + }, + { + "type": "EnergyWindowMaterialGlazing", + "identifier": "Generic Clear Glass", + "thickness": 0.006, + "solar_transmittance": 0.77, + "solar_reflectance": 0.07, + "solar_reflectance_back": 0.07, + "visible_transmittance": 0.88, + "visible_reflectance": 0.08, + "visible_reflectance_back": 0.08, + "infrared_transmittance": 0.0, + "emissivity": 0.84, + "emissivity_back": 0.84, + "conductivity": 1.0, + "dirt_correction": 1.0, + "solar_diffusing": false } ], "hvacs": [ @@ -492,27 +492,37 @@ "schedules": [ { "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Heating", + "identifier": "Generic Office Equipment", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", "values": [ - 15.6 + 0.2307553806, + 0.288107175, + 0.2307553806 ], "times": [ [ 0, 0 + ], + [ + 6, + 0 + ], + [ + 18, + 0 ] ], "interpolate": false }, { "type": "ScheduleDay", - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", "values": [ - 15.6 + 1.0 ], "times": [ [ @@ -524,47 +534,28 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", "values": [ - 15.6, - 17.6, - 19.6, - 21.0, - 15.6 + 0.0 ], "times": [ [ 0, 0 - ], - [ - 5, - 0 - ], - [ - 6, - 0 - ], - [ - 7, - 0 - ], - [ - 22, - 0 ] ], "interpolate": false }, { "type": "ScheduleDay", - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", "values": [ - 15.6, - 17.8, - 20.0, - 21.0, - 15.6 + 0.2307553806, + 0.381234796, + 0.476543495, + 0.3335804465, + 0.285926097, + 0.2307553806 ], "times": [ [ @@ -572,19 +563,23 @@ 0 ], [ - 5, + 6, 0 ], [ - 6, + 8, 0 ], [ - 7, + 12, 0 ], [ - 22, + 17, + 0 + ], + [ + 19, 0 ] ], @@ -592,13 +587,15 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", "values": [ - 15.6, - 17.8, - 20.0, - 21.0, - 15.6 + 0.3076738408, + 0.381234796, + 0.857778291, + 0.762469592, + 0.857778291, + 0.476543495, + 0.381234796 ], "times": [ [ @@ -606,30 +603,38 @@ 0 ], [ - 5, + 6, 0 ], [ - 6, + 8, 0 ], [ - 7, + 12, + 0 + ], + [ + 13, 0 ], [ 17, 0 + ], + [ + 18, + 0 ] ], "interpolate": false } ], - "default_day_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "default_day_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", "schedule_rules": [ { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", + "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", "apply_sunday": false, "apply_monday": true, "apply_tuesday": true, @@ -648,7 +653,7 @@ }, { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", + "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", "apply_sunday": false, "apply_monday": false, "apply_tuesday": false, @@ -666,77 +671,84 @@ ] } ], - "holiday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", - "summer_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", - "winter_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", - "schedule_type_limit": "Temperature" + "holiday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "summer_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", + "winter_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", + "schedule_type_limit": "Fractional" }, { "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Lighting", + "identifier": "Generic Office Infiltration", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", + "identifier": "OfficeMedium INFIL_SCH_PNNL_Default", "values": [ - 0.05, - 0.04311628, - 0.05 + 1.0 ], "times": [ [ 0, 0 - ], - [ - 6, - 0 - ], - [ - 18, - 0 ] ], "interpolate": false }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", + "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", "values": [ + 1.0, + 0.25, 1.0 ], "times": [ [ 0, 0 + ], + [ + 6, + 0 + ], + [ + 22, + 0 ] ], "interpolate": false }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", + "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", "values": [ - 0.0 + 1.0, + 0.25, + 1.0 ], "times": [ [ 0, 0 + ], + [ + 6, + 0 + ], + [ + 18, + 0 ] ], "interpolate": false }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", + "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy", "values": [ - 0.05, - 0.08623256, - 0.25869768, - 0.12934884, - 0.04311628, - 0.05 + 1.0, + 0.25, + 1.0 ], "times": [ [ @@ -748,19 +760,7 @@ 0 ], [ - 8, - 0 - ], - [ - 12, - 0 - ], - [ - 17, - 0 - ], - [ - 19, + 22, 0 ] ], @@ -768,18 +768,11 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", + "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat", "values": [ - 0.05, - 0.1, - 0.08623256, - 0.25869768, - 0.77609304, - 0.4311628, - 0.25869768, - 0.17246512, - 0.08623256, - 0.04311628 + 1.0, + 0.25, + 1.0 ], "times": [ [ @@ -787,50 +780,22 @@ 0 ], [ - 5, - 0 - ], - [ - 6, - 0 - ], - [ - 7, - 0 - ], - [ - 8, - 0 - ], - [ - 17, - 0 - ], - [ - 18, - 0 - ], - [ - 20, - 0 - ], - [ - 22, + 6, 0 ], [ - 23, + 18, 0 ] ], "interpolate": false } ], - "default_day_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", + "default_day_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", "schedule_rules": [ { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", + "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Wkdy", "apply_sunday": false, "apply_monday": true, "apply_tuesday": true, @@ -849,7 +814,7 @@ }, { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", + "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Sat", "apply_sunday": false, "apply_monday": false, "apply_tuesday": false, @@ -867,34 +832,20 @@ ] } ], - "holiday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", - "summer_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", - "winter_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", + "holiday_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", + "summer_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", + "winter_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", "schedule_type_limit": "Fractional" }, { "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Activity", + "identifier": "Generic Office Cooling", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "OfficeMedium ACTIVITY_SCH_Default", - "values": [ - 120.0 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium ACTIVITY_SCH_Default_SmrDsn", + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", "values": [ - 120.0 + 26.7 ], "times": [ [ @@ -906,58 +857,29 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium ACTIVITY_SCH_Default_WntrDsn", + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", "values": [ - 120.0 + 26.7, + 25.7, + 25.0, + 24.0, + 26.7 ], "times": [ [ 0, 0 - ] - ], - "interpolate": false - } - ], - "default_day_schedule": "OfficeMedium ACTIVITY_SCH_Default", - "holiday_schedule": "OfficeMedium ACTIVITY_SCH_Default", - "summer_designday_schedule": "OfficeMedium ACTIVITY_SCH_Default_SmrDsn", - "winter_designday_schedule": "OfficeMedium ACTIVITY_SCH_Default_WntrDsn", - "schedule_type_limit": "Activity Level" - }, - { - "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Infiltration", - "day_schedules": [ - { - "type": "ScheduleDay", - "identifier": "OfficeMedium INFIL_SCH_PNNL_Default", - "values": [ - 1.0 - ], - "times": [ + ], [ - 0, + 5, 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", - "values": [ - 1.0, - 0.25, - 1.0 - ], - "times": [ + ], [ - 0, + 6, 0 ], [ - 6, + 7, 0 ], [ @@ -969,45 +891,45 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", "values": [ - 1.0, - 0.25, - 1.0 + 26.7 ], "times": [ [ 0, 0 - ], - [ - 6, - 0 - ], - [ - 18, - 0 ] ], "interpolate": false }, { "type": "ScheduleDay", - "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy", + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", "values": [ - 1.0, - 0.25, - 1.0 + 26.7, + 25.6, + 25.0, + 24.0, + 26.7 ], "times": [ [ 0, 0 ], + [ + 5, + 0 + ], [ 6, 0 ], + [ + 7, + 0 + ], [ 22, 0 @@ -1017,34 +939,44 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat", + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", "values": [ - 1.0, - 0.25, - 1.0 + 26.7, + 25.7, + 25.0, + 24.0, + 26.7 ], "times": [ [ 0, 0 ], + [ + 5, + 0 + ], [ 6, 0 ], [ - 18, + 7, + 0 + ], + [ + 17, 0 ] ], "interpolate": false } ], - "default_day_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", + "default_day_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", "schedule_rules": [ { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Wkdy", + "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", "apply_sunday": false, "apply_monday": true, "apply_tuesday": true, @@ -1063,7 +995,7 @@ }, { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Sat", + "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", "apply_sunday": false, "apply_monday": false, "apply_tuesday": false, @@ -1081,22 +1013,75 @@ ] } ], - "holiday_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", - "summer_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", - "winter_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", - "schedule_type_limit": "Fractional" + "holiday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", + "summer_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", + "winter_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", + "schedule_type_limit": "Temperature" }, { "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Equipment", + "identifier": "Generic Office Activity", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", + "identifier": "OfficeMedium ACTIVITY_SCH_Default", "values": [ - 0.2307553806, - 0.288107175, - 0.2307553806 + 120.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium ACTIVITY_SCH_Default_SmrDsn", + "values": [ + 120.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium ACTIVITY_SCH_Default_WntrDsn", + "values": [ + 120.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + } + ], + "default_day_schedule": "OfficeMedium ACTIVITY_SCH_Default", + "holiday_schedule": "OfficeMedium ACTIVITY_SCH_Default", + "summer_designday_schedule": "OfficeMedium ACTIVITY_SCH_Default_SmrDsn", + "winter_designday_schedule": "OfficeMedium ACTIVITY_SCH_Default_WntrDsn", + "schedule_type_limit": "Activity Level" + }, + { + "type": "ScheduleRulesetAbridged", + "identifier": "Generic Office Lighting", + "day_schedules": [ + { + "type": "ScheduleDay", + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", + "values": [ + 0.05, + 0.04311628, + 0.05 ], "times": [ [ @@ -1116,7 +1101,7 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", "values": [ 1.0 ], @@ -1130,7 +1115,7 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", "values": [ 0.0 ], @@ -1144,14 +1129,14 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", "values": [ - 0.2307553806, - 0.381234796, - 0.476543495, - 0.3335804465, - 0.285926097, - 0.2307553806 + 0.05, + 0.08623256, + 0.25869768, + 0.12934884, + 0.04311628, + 0.05 ], "times": [ [ @@ -1183,54 +1168,69 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", "values": [ - 0.3076738408, - 0.381234796, - 0.857778291, - 0.762469592, - 0.857778291, - 0.476543495, - 0.381234796 + 0.05, + 0.1, + 0.08623256, + 0.25869768, + 0.77609304, + 0.4311628, + 0.25869768, + 0.17246512, + 0.08623256, + 0.04311628 ], "times": [ [ - 0, + 0, + 0 + ], + [ + 5, 0 ], [ 6, 0 ], + [ + 7, + 0 + ], [ 8, 0 ], [ - 12, + 17, 0 ], [ - 13, + 18, 0 ], [ - 17, + 20, 0 ], [ - 18, + 22, + 0 + ], + [ + 23, 0 ] ], "interpolate": false } ], - "default_day_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", + "default_day_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", "schedule_rules": [ { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", + "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", "apply_sunday": false, "apply_monday": true, "apply_tuesday": true, @@ -1249,7 +1249,7 @@ }, { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", "apply_sunday": false, "apply_monday": false, "apply_tuesday": false, @@ -1267,20 +1267,42 @@ ] } ], - "holiday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", - "summer_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", - "winter_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", + "holiday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", + "summer_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", + "winter_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", "schedule_type_limit": "Fractional" }, { "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Cooling", + "identifier": "Always On", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", + "identifier": "Always On_Day Schedule", "values": [ - 26.7 + 1.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + } + ], + "default_day_schedule": "Always On_Day Schedule", + "schedule_type_limit": "Fractional" + }, + { + "type": "ScheduleRulesetAbridged", + "identifier": "Generic Office Heating", + "day_schedules": [ + { + "type": "ScheduleDay", + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "values": [ + 15.6 ], "times": [ [ @@ -1292,13 +1314,27 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", "values": [ - 26.7, - 25.7, - 25.0, - 24.0, - 26.7 + 15.6 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", + "values": [ + 15.6, + 17.6, + 19.6, + 21.0, + 15.6 ], "times": [ [ @@ -1326,27 +1362,13 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", - "values": [ - 26.7 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", "values": [ - 26.7, - 25.6, - 25.0, - 24.0, - 26.7 + 15.6, + 17.8, + 20.0, + 21.0, + 15.6 ], "times": [ [ @@ -1374,13 +1396,13 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", "values": [ - 26.7, - 25.7, - 25.0, - 24.0, - 26.7 + 15.6, + 17.8, + 20.0, + 21.0, + 15.6 ], "times": [ [ @@ -1407,11 +1429,11 @@ "interpolate": false } ], - "default_day_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", + "default_day_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", "schedule_rules": [ { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", + "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", "apply_sunday": false, "apply_monday": true, "apply_tuesday": true, @@ -1430,7 +1452,7 @@ }, { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", + "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", "apply_sunday": false, "apply_monday": false, "apply_tuesday": false, @@ -1448,33 +1470,11 @@ ] } ], - "holiday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", - "summer_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", - "winter_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", + "holiday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "summer_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", + "winter_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", "schedule_type_limit": "Temperature" }, - { - "type": "ScheduleRulesetAbridged", - "identifier": "Always On", - "day_schedules": [ - { - "type": "ScheduleDay", - "identifier": "Always On_Day Schedule", - "values": [ - 1.0 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - } - ], - "default_day_schedule": "Always On_Day Schedule", - "schedule_type_limit": "Fractional" - }, { "type": "ScheduleRulesetAbridged", "identifier": "Generic Office Occupancy", @@ -1693,23 +1693,23 @@ }, { "type": "ScheduleTypeLimit", - "identifier": "Activity Level", - "lower_limit": 0.0, + "identifier": "Temperature", + "lower_limit": -273.15, "upper_limit": { "type": "NoLimit" }, "numeric_type": "Continuous", - "unit_type": "ActivityLevel" + "unit_type": "Temperature" }, { "type": "ScheduleTypeLimit", - "identifier": "Temperature", - "lower_limit": -273.15, + "identifier": "Activity Level", + "lower_limit": 0.0, "upper_limit": { "type": "NoLimit" }, "numeric_type": "Continuous", - "unit_type": "Temperature" + "unit_type": "ActivityLevel" } ] }, @@ -1720,39 +1720,39 @@ "type": "ModifierSetAbridged", "identifier": "Generic_Interior_Visible_Modifier_Set", "wall_set": { - "exterior_modifier": "generic_wall_0.50", "interior_modifier": "generic_wall_0.50", - "type": "WallConstructionSetAbridged" + "exterior_modifier": "generic_wall_0.50", + "type": "WallModifierSetAbridged" }, "floor_set": { - "exterior_modifier": "generic_floor_0.20", "interior_modifier": "generic_floor_0.20", - "type": "FloorConstructionSetAbridged" + "exterior_modifier": "generic_floor_0.20", + "type": "FloorModifierSetAbridged" }, "roof_ceiling_set": { - "exterior_modifier": "generic_ceiling_0.80", "interior_modifier": "generic_ceiling_0.80", - "type": "RoofCeilingConstructionSetAbridged" + "exterior_modifier": "generic_ceiling_0.80", + "type": "RoofCeilingModifierSetAbridged" }, "aperture_set": { + "interior_modifier": "generic_interior_window_vis_0.88", "skylight_modifier": "generic_exterior_window_vis_0.64", "operable_modifier": "generic_exterior_window_vis_0.64", - "interior_modifier": "generic_interior_window_vis_0.88", - "type": "ApertureConstructionSetAbridged", + "type": "ApertureModifierSetAbridged", "window_modifier": "generic_exterior_window_vis_0.64" }, "door_set": { "exterior_modifier": "generic_opaque_door_0.50", + "overhead_modifier": "generic_opaque_door_0.50", + "interior_modifier": "generic_opaque_door_0.50", "exterior_glass_modifier": "generic_exterior_window_vis_0.64", "interior_glass_modifier": "generic_interior_window_vis_0.88", - "interior_modifier": "generic_opaque_door_0.50", - "overhead_modifier": "generic_opaque_door_0.50", - "type": "DoorConstructionSetAbridged" + "type": "DoorModifierSetAbridged" }, "shade_set": { - "exterior_modifier": "generic_exterior_shade_0.35", "interior_modifier": "generic_interior_shade_0.50", - "type": "ShadeSetAbridged" + "exterior_modifier": "generic_exterior_shade_0.35", + "type": "ShadeModifierSetAbridged" }, "air_boundary_modifier": "air_boundary" } @@ -1760,18 +1760,34 @@ "global_modifier_set": "Generic_Interior_Visible_Modifier_Set", "modifiers": [ { - "modifier": "void", + "modifier": { + "type": "void" + }, + "type": "glass", + "identifier": "generic_interior_window_vis_0.88", + "r_transmissivity": 0.9584154328610596, + "g_transmissivity": 0.9584154328610596, + "b_transmissivity": 0.9584154328610596, + "refraction_index": null, + "dependencies": [] + }, + { + "modifier": { + "type": "void" + }, "type": "plastic", - "identifier": "generic_wall_0.50", - "r_reflectance": 0.5, - "g_reflectance": 0.5, - "b_reflectance": 0.5, + "identifier": "generic_exterior_shade_0.35", + "r_reflectance": 0.35, + "g_reflectance": 0.35, + "b_reflectance": 0.35, "specularity": 0.0, "roughness": 0.0, "dependencies": [] }, { - "modifier": "void", + "modifier": { + "type": "void" + }, "type": "plastic", "identifier": "generic_floor_0.20", "r_reflectance": 0.2, @@ -1782,28 +1798,9 @@ "dependencies": [] }, { - "modifier": "void", - "type": "glass", - "identifier": "generic_exterior_window_vis_0.64", - "r_transmissivity": 0.6975761815384331, - "g_transmissivity": 0.6975761815384331, - "b_transmissivity": 0.6975761815384331, - "refraction_index": null, - "dependencies": [] - }, - { - "modifier": "void", - "type": "plastic", - "identifier": "generic_opaque_door_0.50", - "r_reflectance": 0.5, - "g_reflectance": 0.5, - "b_reflectance": 0.5, - "specularity": 0.0, - "roughness": 0.0, - "dependencies": [] - }, - { - "modifier": "void", + "modifier": { + "type": "void" + }, "type": "plastic", "identifier": "generic_ceiling_0.80", "r_reflectance": 0.8, @@ -1814,9 +1811,11 @@ "dependencies": [] }, { - "modifier": "void", + "modifier": { + "type": "void" + }, "type": "plastic", - "identifier": "generic_interior_shade_0.50", + "identifier": "generic_opaque_door_0.50", "r_reflectance": 0.5, "g_reflectance": 0.5, "b_reflectance": 0.5, @@ -1825,18 +1824,22 @@ "dependencies": [] }, { - "modifier": "void", + "modifier": { + "type": "void" + }, "type": "plastic", - "identifier": "generic_exterior_shade_0.35", - "r_reflectance": 0.35, - "g_reflectance": 0.35, - "b_reflectance": 0.35, + "identifier": "generic_wall_0.50", + "r_reflectance": 0.5, + "g_reflectance": 0.5, + "b_reflectance": 0.5, "specularity": 0.0, "roughness": 0.0, "dependencies": [] }, { - "modifier": "void", + "modifier": { + "type": "void" + }, "type": "glass", "identifier": "air_boundary", "r_transmissivity": 1.0, @@ -1846,12 +1849,27 @@ "dependencies": [] }, { - "modifier": "void", + "modifier": { + "type": "void" + }, + "type": "plastic", + "identifier": "generic_interior_shade_0.50", + "r_reflectance": 0.5, + "g_reflectance": 0.5, + "b_reflectance": 0.5, + "specularity": 0.0, + "roughness": 0.0, + "dependencies": [] + }, + { + "modifier": { + "type": "void" + }, "type": "glass", - "identifier": "generic_interior_window_vis_0.88", - "r_transmissivity": 0.9584154328610596, - "g_transmissivity": 0.9584154328610596, - "b_transmissivity": 0.9584154328610596, + "identifier": "generic_exterior_window_vis_0.64", + "r_transmissivity": 0.6975761815384331, + "g_transmissivity": 0.6975761815384331, + "b_transmissivity": 0.6975761815384331, "refraction_index": null, "dependencies": [] } diff --git a/samples/model/model_complete_patient_room.json b/samples/model/model_complete_patient_room.json index ffc76e9..55f8850 100644 --- a/samples/model/model_complete_patient_room.json +++ b/samples/model/model_complete_patient_room.json @@ -51,22 +51,39 @@ ], "global_construction_set": "Default Generic Construction Set", "constructions": [ + { + "type": "ShadeConstruction", + "identifier": "Generic Shade", + "solar_reflectance": 0.35, + "visible_reflectance": 0.35, + "is_specular": false + }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exterior Door", + "identifier": "Generic Interior Wall", "layers": [ - "Generic Painted Metal", - "Generic 25mm Insulation", - "Generic Painted Metal" + "Generic Gypsum Board", + "Generic Wall Air Gap", + "Generic Gypsum Board" ] }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Floor", + "identifier": "Generic Underground Wall", "layers": [ - "Generic Acoustic Tile", - "Generic Ceiling Air Gap", - "Generic LW Concrete" + "Generic 50mm Insulation", + "Generic HW Concrete", + "Generic Wall Air Gap", + "Generic Gypsum Board" + ] + }, + { + "type": "OpaqueConstructionAbridged", + "identifier": "Generic Exterior Door", + "layers": [ + "Generic Painted Metal", + "Generic 25mm Insulation", + "Generic Painted Metal" ] }, { @@ -80,13 +97,11 @@ }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exterior Wall", + "identifier": "Generic Interior Floor", "layers": [ - "Generic Brick", - "Generic LW Concrete", - "Generic 50mm Insulation", - "Generic Wall Air Gap", - "Generic Gypsum Board" + "Generic Acoustic Tile", + "Generic Ceiling Air Gap", + "Generic LW Concrete" ] }, { @@ -97,22 +112,6 @@ "Generic HW Concrete" ] }, - { - "type": "AirBoundaryConstructionAbridged", - "identifier": "Generic Air Boundary", - "air_mixing_per_area": 0.1, - "air_mixing_schedule": "Always On" - }, - { - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exposed Floor", - "layers": [ - "Generic Painted Metal", - "Generic Ceiling Air Gap", - "Generic 50mm Insulation", - "Generic LW Concrete" - ] - }, { "type": "OpaqueConstructionAbridged", "identifier": "Generic Roof", @@ -126,30 +125,40 @@ }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Underground Roof", + "identifier": "Generic Exterior Wall", "layers": [ + "Generic Brick", + "Generic LW Concrete", "Generic 50mm Insulation", - "Generic HW Concrete", - "Generic Ceiling Air Gap", - "Generic Acoustic Tile" + "Generic Wall Air Gap", + "Generic Gypsum Board" ] }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Door", + "identifier": "Generic Interior Ceiling", "layers": [ - "Generic 25mm Wood" + "Generic LW Concrete", + "Generic Ceiling Air Gap", + "Generic Acoustic Tile" ] }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Wall", + "identifier": "Generic Exposed Floor", "layers": [ - "Generic Gypsum Board", - "Generic Wall Air Gap", - "Generic Gypsum Board" + "Generic Painted Metal", + "Generic Ceiling Air Gap", + "Generic 50mm Insulation", + "Generic LW Concrete" ] }, + { + "type": "AirBoundaryConstructionAbridged", + "identifier": "Generic Air Boundary", + "air_mixing_per_area": 0.1, + "air_mixing_schedule": "Always On" + }, { "type": "WindowConstructionAbridged", "identifier": "Generic Single Pane", @@ -159,43 +168,51 @@ }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Ceiling", + "identifier": "Generic Interior Door", "layers": [ - "Generic LW Concrete", - "Generic Ceiling Air Gap", - "Generic Acoustic Tile" + "Generic 25mm Wood" ] }, - { - "type": "ShadeConstruction", - "identifier": "Generic Shade", - "solar_reflectance": 0.35, - "visible_reflectance": 0.35, - "is_specular": false - }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Underground Wall", + "identifier": "Generic Underground Roof", "layers": [ "Generic 50mm Insulation", "Generic HW Concrete", - "Generic Wall Air Gap", - "Generic Gypsum Board" + "Generic Ceiling Air Gap", + "Generic Acoustic Tile" ] } ], "materials": [ { "type": "EnergyMaterial", - "identifier": "Generic 25mm Insulation", - "roughness": "MediumRough", - "thickness": 0.05, - "conductivity": 0.03, - "density": 43.0, - "specific_heat": 1210.0, + "identifier": "Generic Acoustic Tile", + "roughness": "MediumSmooth", + "thickness": 0.02, + "conductivity": 0.06, + "density": 368.0, + "specific_heat": 590.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 + "solar_absorptance": 0.2, + "visible_absorptance": 0.2 + }, + { + "type": "EnergyWindowMaterialGlazing", + "identifier": "Generic Low-e Glass", + "thickness": 0.006, + "solar_transmittance": 0.45, + "solar_reflectance": 0.36, + "solar_reflectance_back": 0.36, + "visible_transmittance": 0.71, + "visible_reflectance": 0.21, + "visible_reflectance_back": 0.21, + "infrared_transmittance": 0.0, + "emissivity": 0.84, + "emissivity_back": 0.047, + "conductivity": 1.0, + "dirt_correction": 1.0, + "solar_diffusing": false }, { "type": "EnergyMaterial", @@ -211,27 +228,27 @@ }, { "type": "EnergyMaterial", - "identifier": "Generic Painted Metal", + "identifier": "Generic Wall Air Gap", "roughness": "Smooth", - "thickness": 0.0015, - "conductivity": 45.0, - "density": 7690.0, - "specific_heat": 410.0, + "thickness": 0.1, + "conductivity": 0.667, + "density": 1.28, + "specific_heat": 1000.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.5, - "visible_absorptance": 0.5 + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 }, { "type": "EnergyMaterial", - "identifier": "Generic 25mm Wood", - "roughness": "MediumSmooth", - "thickness": 0.0254, - "conductivity": 0.15, - "density": 608.0, - "specific_heat": 1630.0, + "identifier": "Generic 25mm Insulation", + "roughness": "MediumRough", + "thickness": 0.05, + "conductivity": 0.03, + "density": 43.0, + "specific_heat": 1210.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.5, - "visible_absorptance": 0.5 + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 }, { "type": "EnergyMaterial", @@ -245,52 +262,41 @@ "solar_absorptance": 0.7, "visible_absorptance": 0.7 }, - { - "type": "EnergyWindowMaterialGas", - "identifier": "Generic Window Air Gap", - "thickness": 0.0127, - "gas_type": "Air" - }, { "type": "EnergyMaterial", - "identifier": "Generic Wall Air Gap", - "roughness": "Smooth", - "thickness": 0.1, - "conductivity": 0.667, - "density": 1.28, - "specific_heat": 1000.0, + "identifier": "Generic HW Concrete", + "roughness": "MediumRough", + "thickness": 0.2, + "conductivity": 1.95, + "density": 2240.0, + "specific_heat": 900.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 + "solar_absorptance": 0.8, + "visible_absorptance": 0.8 }, { - "type": "EnergyWindowMaterialGlazing", - "identifier": "Generic Clear Glass", - "thickness": 0.006, - "solar_transmittance": 0.77, - "solar_reflectance": 0.07, - "solar_reflectance_back": 0.07, - "visible_transmittance": 0.88, - "visible_reflectance": 0.08, - "visible_reflectance_back": 0.08, - "infrared_transmittance": 0.0, - "emissivity": 0.84, - "emissivity_back": 0.84, - "conductivity": 1.0, - "dirt_correction": 1.0, - "solar_diffusing": false + "type": "EnergyMaterial", + "identifier": "Generic Gypsum Board", + "roughness": "MediumSmooth", + "thickness": 0.0127, + "conductivity": 0.16, + "density": 800.0, + "specific_heat": 1090.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.5, + "visible_absorptance": 0.5 }, { "type": "EnergyMaterial", - "identifier": "Generic Brick", + "identifier": "Generic 50mm Insulation", "roughness": "MediumRough", - "thickness": 0.1, - "conductivity": 0.9, - "density": 1920.0, - "specific_heat": 790.0, + "thickness": 0.05, + "conductivity": 0.03, + "density": 43.0, + "specific_heat": 1210.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.65, - "visible_absorptance": 0.65 + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 }, { "type": "EnergyMaterial", @@ -306,68 +312,62 @@ }, { "type": "EnergyMaterial", - "identifier": "Generic Gypsum Board", + "identifier": "Generic 25mm Wood", "roughness": "MediumSmooth", - "thickness": 0.0127, - "conductivity": 0.16, - "density": 800.0, - "specific_heat": 1090.0, + "thickness": 0.0254, + "conductivity": 0.15, + "density": 608.0, + "specific_heat": 1630.0, "thermal_absorptance": 0.9, "solar_absorptance": 0.5, "visible_absorptance": 0.5 }, { "type": "EnergyMaterial", - "identifier": "Generic HW Concrete", + "identifier": "Generic Painted Metal", + "roughness": "Smooth", + "thickness": 0.0015, + "conductivity": 45.0, + "density": 7690.0, + "specific_heat": 410.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.5, + "visible_absorptance": 0.5 + }, + { + "type": "EnergyWindowMaterialGas", + "identifier": "Generic Window Air Gap", + "thickness": 0.0127, + "gas_type": "Air" + }, + { + "type": "EnergyMaterial", + "identifier": "Generic Brick", "roughness": "MediumRough", - "thickness": 0.2, - "conductivity": 1.95, - "density": 2240.0, - "specific_heat": 900.0, + "thickness": 0.1, + "conductivity": 0.9, + "density": 1920.0, + "specific_heat": 790.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.8, - "visible_absorptance": 0.8 + "solar_absorptance": 0.65, + "visible_absorptance": 0.65 }, { "type": "EnergyWindowMaterialGlazing", - "identifier": "Generic Low-e Glass", + "identifier": "Generic Clear Glass", "thickness": 0.006, - "solar_transmittance": 0.45, - "solar_reflectance": 0.36, - "solar_reflectance_back": 0.36, - "visible_transmittance": 0.71, - "visible_reflectance": 0.21, - "visible_reflectance_back": 0.21, + "solar_transmittance": 0.77, + "solar_reflectance": 0.07, + "solar_reflectance_back": 0.07, + "visible_transmittance": 0.88, + "visible_reflectance": 0.08, + "visible_reflectance_back": 0.08, "infrared_transmittance": 0.0, "emissivity": 0.84, - "emissivity_back": 0.047, + "emissivity_back": 0.84, "conductivity": 1.0, "dirt_correction": 1.0, "solar_diffusing": false - }, - { - "type": "EnergyMaterial", - "identifier": "Generic Acoustic Tile", - "roughness": "MediumSmooth", - "thickness": 0.02, - "conductivity": 0.06, - "density": 368.0, - "specific_heat": 590.0, - "thermal_absorptance": 0.9, - "solar_absorptance": 0.2, - "visible_absorptance": 0.2 - }, - { - "type": "EnergyMaterial", - "identifier": "Generic 50mm Insulation", - "roughness": "MediumRough", - "thickness": 0.05, - "conductivity": 0.03, - "density": 43.0, - "specific_heat": 1210.0, - "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 } ], "hvacs": [ @@ -443,13 +443,41 @@ "schedules": [ { "type": "ScheduleRulesetAbridged", - "identifier": "Humidity Controlled PatRm Setpt_DeHumidSetp", + "identifier": "Hospital ACTIVITY_SCH", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "Humidity Controlled PatRm Setpt_DeHumidSetp_Day Schedule", + "identifier": "Hospital ACTIVITY_SCH_Default", "values": [ - 55.0 + 120.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "Hospital ACTIVITY_SCH_SmrDsn", + "values": [ + 120.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "Hospital ACTIVITY_SCH_WntrDsn", + "values": [ + 120.0 ], "times": [ [ @@ -460,18 +488,20 @@ "interpolate": false } ], - "default_day_schedule": "Humidity Controlled PatRm Setpt_DeHumidSetp_Day Schedule", - "schedule_type_limit": "Humidity" + "default_day_schedule": "Hospital ACTIVITY_SCH_Default", + "summer_designday_schedule": "Hospital ACTIVITY_SCH_SmrDsn", + "winter_designday_schedule": "Hospital ACTIVITY_SCH_WntrDsn", + "schedule_type_limit": "Activity Level" }, { "type": "ScheduleRulesetAbridged", - "identifier": "Hospital ACTIVITY_SCH", + "identifier": "Hospital INFIL_SCH_PNNL", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "Hospital ACTIVITY_SCH_Default", + "identifier": "Hospital INFIL_SCH_PNNL_Default", "values": [ - 120.0 + 0.25 ], "times": [ [ @@ -483,9 +513,9 @@ }, { "type": "ScheduleDay", - "identifier": "Hospital ACTIVITY_SCH_SmrDsn", + "identifier": "Hospital INFIL_SCH_PNNL_SmrDsn", "values": [ - 120.0 + 0.25 ], "times": [ [ @@ -497,9 +527,23 @@ }, { "type": "ScheduleDay", - "identifier": "Hospital ACTIVITY_SCH_WntrDsn", + "identifier": "Hospital INFIL_SCH_PNNL_WntrDsn", "values": [ - 120.0 + 0.25 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "Hospital INFIL_SCH_PNNL_Sat|Wkdy", + "values": [ + 0.25 ], "times": [ [ @@ -510,10 +554,75 @@ "interpolate": false } ], - "default_day_schedule": "Hospital ACTIVITY_SCH_Default", - "summer_designday_schedule": "Hospital ACTIVITY_SCH_SmrDsn", - "winter_designday_schedule": "Hospital ACTIVITY_SCH_WntrDsn", - "schedule_type_limit": "Activity Level" + "default_day_schedule": "Hospital INFIL_SCH_PNNL_Default", + "schedule_rules": [ + { + "type": "ScheduleRuleAbridged", + "schedule_day": "Hospital INFIL_SCH_PNNL_Sat|Wkdy", + "apply_sunday": false, + "apply_monday": true, + "apply_tuesday": true, + "apply_wednesday": true, + "apply_thursday": true, + "apply_friday": true, + "apply_saturday": true, + "start_date": [ + 1, + 1 + ], + "end_date": [ + 12, + 31 + ] + } + ], + "summer_designday_schedule": "Hospital INFIL_SCH_PNNL_SmrDsn", + "winter_designday_schedule": "Hospital INFIL_SCH_PNNL_WntrDsn", + "schedule_type_limit": "Fractional" + }, + { + "type": "ScheduleRulesetAbridged", + "identifier": "Humidity Controlled PatRm Setpt_ClgSetp", + "day_schedules": [ + { + "type": "ScheduleDay", + "identifier": "Humidity Controlled PatRm Setpt_ClgSetp_Day Schedule", + "values": [ + 24.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + } + ], + "default_day_schedule": "Humidity Controlled PatRm Setpt_ClgSetp_Day Schedule", + "schedule_type_limit": "Temperature" + }, + { + "type": "ScheduleRulesetAbridged", + "identifier": "Humidity Controlled PatRm Setpt_DeHumidSetp", + "day_schedules": [ + { + "type": "ScheduleDay", + "identifier": "Humidity Controlled PatRm Setpt_DeHumidSetp_Day Schedule", + "values": [ + 55.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + } + ], + "default_day_schedule": "Humidity Controlled PatRm Setpt_DeHumidSetp_Day Schedule", + "schedule_type_limit": "Humidity" }, { "type": "ScheduleRulesetAbridged", @@ -667,100 +776,13 @@ }, { "type": "ScheduleRulesetAbridged", - "identifier": "Hospital INFIL_SCH_PNNL", - "day_schedules": [ - { - "type": "ScheduleDay", - "identifier": "Hospital INFIL_SCH_PNNL_Default", - "values": [ - 0.25 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "Hospital INFIL_SCH_PNNL_SmrDsn", - "values": [ - 0.25 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "Hospital INFIL_SCH_PNNL_WntrDsn", - "values": [ - 0.25 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "Hospital INFIL_SCH_PNNL_Sat|Wkdy", - "values": [ - 0.25 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - } - ], - "default_day_schedule": "Hospital INFIL_SCH_PNNL_Default", - "schedule_rules": [ - { - "type": "ScheduleRuleAbridged", - "schedule_day": "Hospital INFIL_SCH_PNNL_Sat|Wkdy", - "apply_sunday": false, - "apply_monday": true, - "apply_tuesday": true, - "apply_wednesday": true, - "apply_thursday": true, - "apply_friday": true, - "apply_saturday": true, - "start_date": [ - 1, - 1 - ], - "end_date": [ - 12, - 31 - ] - } - ], - "summer_designday_schedule": "Hospital INFIL_SCH_PNNL_SmrDsn", - "winter_designday_schedule": "Hospital INFIL_SCH_PNNL_WntrDsn", - "schedule_type_limit": "Fractional" - }, - { - "type": "ScheduleRulesetAbridged", - "identifier": "Humidity Controlled PatRm Setpt_ClgSetp", + "identifier": "Humidity Controlled PatRm Setpt_DeHumidSetp", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "Humidity Controlled PatRm Setpt_ClgSetp_Day Schedule", + "identifier": "Humidity Controlled PatRm Setpt_DeHumidSetp_Day Schedule", "values": [ - 24.0 + 30.0 ], "times": [ [ @@ -771,18 +793,18 @@ "interpolate": false } ], - "default_day_schedule": "Humidity Controlled PatRm Setpt_ClgSetp_Day Schedule", - "schedule_type_limit": "Temperature" + "default_day_schedule": "Humidity Controlled PatRm Setpt_DeHumidSetp_Day Schedule", + "schedule_type_limit": "Humidity" }, { "type": "ScheduleRulesetAbridged", - "identifier": "Hospital CLGSETP_SCH", + "identifier": "Hospital HTGSETP_SCH", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "Hospital CLGSETP_SCH_Default", + "identifier": "Hospital HTGSETP_SCH_Default", "values": [ - 24.0 + 21.0 ], "times": [ [ @@ -794,9 +816,9 @@ }, { "type": "ScheduleDay", - "identifier": "Hospital CLGSETP_SCH_SmrDsn", + "identifier": "Hospital HTGSETP_SCH_SmrDsn", "values": [ - 24.0 + 21.0 ], "times": [ [ @@ -808,31 +830,7 @@ }, { "type": "ScheduleDay", - "identifier": "Hospital CLGSETP_SCH_WntrDsn", - "values": [ - 24.0 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - } - ], - "default_day_schedule": "Hospital CLGSETP_SCH_Default", - "summer_designday_schedule": "Hospital CLGSETP_SCH_SmrDsn", - "winter_designday_schedule": "Hospital CLGSETP_SCH_WntrDsn", - "schedule_type_limit": "Temperature" - }, - { - "type": "ScheduleRulesetAbridged", - "identifier": "Humidity Controlled PatRm Setpt_HtgSetp", - "day_schedules": [ - { - "type": "ScheduleDay", - "identifier": "Humidity Controlled PatRm Setpt_HtgSetp_Day Schedule", + "identifier": "Hospital HTGSETP_SCH_WntrDsn", "values": [ 21.0 ], @@ -845,16 +843,18 @@ "interpolate": false } ], - "default_day_schedule": "Humidity Controlled PatRm Setpt_HtgSetp_Day Schedule", + "default_day_schedule": "Hospital HTGSETP_SCH_Default", + "summer_designday_schedule": "Hospital HTGSETP_SCH_SmrDsn", + "winter_designday_schedule": "Hospital HTGSETP_SCH_WntrDsn", "schedule_type_limit": "Temperature" }, { "type": "ScheduleRulesetAbridged", - "identifier": "Hospital BLDG_OCC_EXTD_SCH", + "identifier": "Hospital BLDG_EQUIP_EXTD_SCH", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "Hospital BLDG_OCC_EXTD_SCH_Default", + "identifier": "Hospital BLDG_EQUIP_EXTD_SCH_Default", "values": [ 0.4, 0.6, @@ -878,7 +878,7 @@ }, { "type": "ScheduleDay", - "identifier": "Hospital BLDG_OCC_EXTD_SCH_SmrDsn", + "identifier": "Hospital BLDG_EQUIP_EXTD_SCH_SmrDsn", "values": [ 1.0 ], @@ -892,7 +892,7 @@ }, { "type": "ScheduleDay", - "identifier": "Hospital BLDG_OCC_EXTD_SCH_WntrDsn", + "identifier": "Hospital BLDG_EQUIP_EXTD_SCH_WntrDsn", "values": [ 0.0 ], @@ -906,12 +906,11 @@ }, { "type": "ScheduleDay", - "identifier": "Hospital BLDG_OCC_EXTD_SCH_Sat", + "identifier": "Hospital BLDG_EQUIP_EXTD_SCH_Sat", "values": [ 0.4, 0.5, - 0.6, - 0.5, + 0.65, 0.4 ], "times": [ @@ -928,11 +927,7 @@ 0 ], [ - 17, - 0 - ], - [ - 19, + 18, 0 ] ], @@ -940,14 +935,12 @@ }, { "type": "ScheduleDay", - "identifier": "Hospital BLDG_OCC_EXTD_SCH_Wkdy", + "identifier": "Hospital BLDG_EQUIP_EXTD_SCH_Wkdy", "values": [ 0.4, - 0.5, - 0.6, - 0.8, + 0.7, + 0.9, 0.6, - 0.5, 0.4 ], "times": [ @@ -964,30 +957,22 @@ 0 ], [ - 9, - 0 - ], - [ - 17, - 0 - ], - [ - 18, + 16, 0 ], [ - 20, + 23, 0 ] ], "interpolate": false } ], - "default_day_schedule": "Hospital BLDG_OCC_EXTD_SCH_Default", + "default_day_schedule": "Hospital BLDG_EQUIP_EXTD_SCH_Default", "schedule_rules": [ { "type": "ScheduleRuleAbridged", - "schedule_day": "Hospital BLDG_OCC_EXTD_SCH_Sat", + "schedule_day": "Hospital BLDG_EQUIP_EXTD_SCH_Sat", "apply_sunday": false, "apply_monday": false, "apply_tuesday": false, @@ -1006,7 +991,7 @@ }, { "type": "ScheduleRuleAbridged", - "schedule_day": "Hospital BLDG_OCC_EXTD_SCH_Wkdy", + "schedule_day": "Hospital BLDG_EQUIP_EXTD_SCH_Wkdy", "apply_sunday": false, "apply_monday": true, "apply_tuesday": true, @@ -1018,23 +1003,97 @@ 1, 1 ], - "end_date": [ - 12, - 31 - ] + "end_date": [ + 12, + 31 + ] + } + ], + "summer_designday_schedule": "Hospital BLDG_EQUIP_EXTD_SCH_SmrDsn", + "winter_designday_schedule": "Hospital BLDG_EQUIP_EXTD_SCH_WntrDsn", + "schedule_type_limit": "Fractional" + }, + { + "type": "ScheduleRulesetAbridged", + "identifier": "Hospital CLGSETP_SCH", + "day_schedules": [ + { + "type": "ScheduleDay", + "identifier": "Hospital CLGSETP_SCH_Default", + "values": [ + 24.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "Hospital CLGSETP_SCH_SmrDsn", + "values": [ + 24.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "Hospital CLGSETP_SCH_WntrDsn", + "values": [ + 24.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + } + ], + "default_day_schedule": "Hospital CLGSETP_SCH_Default", + "summer_designday_schedule": "Hospital CLGSETP_SCH_SmrDsn", + "winter_designday_schedule": "Hospital CLGSETP_SCH_WntrDsn", + "schedule_type_limit": "Temperature" + }, + { + "type": "ScheduleRulesetAbridged", + "identifier": "Always On", + "day_schedules": [ + { + "type": "ScheduleDay", + "identifier": "Always On_Day Schedule", + "values": [ + 1.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false } ], - "summer_designday_schedule": "Hospital BLDG_OCC_EXTD_SCH_SmrDsn", - "winter_designday_schedule": "Hospital BLDG_OCC_EXTD_SCH_WntrDsn", + "default_day_schedule": "Always On_Day Schedule", "schedule_type_limit": "Fractional" }, { "type": "ScheduleRulesetAbridged", - "identifier": "Hospital BLDG_EQUIP_EXTD_SCH", + "identifier": "Hospital BLDG_OCC_EXTD_SCH", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "Hospital BLDG_EQUIP_EXTD_SCH_Default", + "identifier": "Hospital BLDG_OCC_EXTD_SCH_Default", "values": [ 0.4, 0.6, @@ -1058,7 +1117,7 @@ }, { "type": "ScheduleDay", - "identifier": "Hospital BLDG_EQUIP_EXTD_SCH_SmrDsn", + "identifier": "Hospital BLDG_OCC_EXTD_SCH_SmrDsn", "values": [ 1.0 ], @@ -1072,7 +1131,7 @@ }, { "type": "ScheduleDay", - "identifier": "Hospital BLDG_EQUIP_EXTD_SCH_WntrDsn", + "identifier": "Hospital BLDG_OCC_EXTD_SCH_WntrDsn", "values": [ 0.0 ], @@ -1086,11 +1145,12 @@ }, { "type": "ScheduleDay", - "identifier": "Hospital BLDG_EQUIP_EXTD_SCH_Sat", + "identifier": "Hospital BLDG_OCC_EXTD_SCH_Sat", "values": [ 0.4, 0.5, - 0.65, + 0.6, + 0.5, 0.4 ], "times": [ @@ -1107,7 +1167,11 @@ 0 ], [ - 18, + 17, + 0 + ], + [ + 19, 0 ] ], @@ -1115,12 +1179,14 @@ }, { "type": "ScheduleDay", - "identifier": "Hospital BLDG_EQUIP_EXTD_SCH_Wkdy", + "identifier": "Hospital BLDG_OCC_EXTD_SCH_Wkdy", "values": [ 0.4, - 0.7, - 0.9, + 0.5, + 0.6, + 0.8, 0.6, + 0.5, 0.4 ], "times": [ @@ -1137,22 +1203,30 @@ 0 ], [ - 16, + 9, 0 ], [ - 23, + 17, + 0 + ], + [ + 18, + 0 + ], + [ + 20, 0 ] ], "interpolate": false } ], - "default_day_schedule": "Hospital BLDG_EQUIP_EXTD_SCH_Default", + "default_day_schedule": "Hospital BLDG_OCC_EXTD_SCH_Default", "schedule_rules": [ { "type": "ScheduleRuleAbridged", - "schedule_day": "Hospital BLDG_EQUIP_EXTD_SCH_Sat", + "schedule_day": "Hospital BLDG_OCC_EXTD_SCH_Sat", "apply_sunday": false, "apply_monday": false, "apply_tuesday": false, @@ -1171,7 +1245,7 @@ }, { "type": "ScheduleRuleAbridged", - "schedule_day": "Hospital BLDG_EQUIP_EXTD_SCH_Wkdy", + "schedule_day": "Hospital BLDG_OCC_EXTD_SCH_Wkdy", "apply_sunday": false, "apply_monday": true, "apply_tuesday": true, @@ -1189,45 +1263,17 @@ ] } ], - "summer_designday_schedule": "Hospital BLDG_EQUIP_EXTD_SCH_SmrDsn", - "winter_designday_schedule": "Hospital BLDG_EQUIP_EXTD_SCH_WntrDsn", + "summer_designday_schedule": "Hospital BLDG_OCC_EXTD_SCH_SmrDsn", + "winter_designday_schedule": "Hospital BLDG_OCC_EXTD_SCH_WntrDsn", "schedule_type_limit": "Fractional" }, { "type": "ScheduleRulesetAbridged", - "identifier": "Hospital HTGSETP_SCH", + "identifier": "Humidity Controlled PatRm Setpt_HtgSetp", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "Hospital HTGSETP_SCH_Default", - "values": [ - 21.0 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "Hospital HTGSETP_SCH_SmrDsn", - "values": [ - 21.0 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "Hospital HTGSETP_SCH_WntrDsn", + "identifier": "Humidity Controlled PatRm Setpt_HtgSetp_Day Schedule", "values": [ 21.0 ], @@ -1240,72 +1286,28 @@ "interpolate": false } ], - "default_day_schedule": "Hospital HTGSETP_SCH_Default", - "summer_designday_schedule": "Hospital HTGSETP_SCH_SmrDsn", - "winter_designday_schedule": "Hospital HTGSETP_SCH_WntrDsn", + "default_day_schedule": "Humidity Controlled PatRm Setpt_HtgSetp_Day Schedule", "schedule_type_limit": "Temperature" - }, - { - "type": "ScheduleRulesetAbridged", - "identifier": "Always On", - "day_schedules": [ - { - "type": "ScheduleDay", - "identifier": "Always On_Day Schedule", - "values": [ - 1.0 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - } - ], - "default_day_schedule": "Always On_Day Schedule", - "schedule_type_limit": "Fractional" - }, - { - "type": "ScheduleRulesetAbridged", - "identifier": "Humidity Controlled PatRm Setpt_DeHumidSetp", - "day_schedules": [ - { - "type": "ScheduleDay", - "identifier": "Humidity Controlled PatRm Setpt_DeHumidSetp_Day Schedule", - "values": [ - 30.0 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - } - ], - "default_day_schedule": "Humidity Controlled PatRm Setpt_DeHumidSetp_Day Schedule", - "schedule_type_limit": "Humidity" } ], "schedule_type_limits": [ { "type": "ScheduleTypeLimit", - "identifier": "Humidity", + "identifier": "Fractional", "lower_limit": 0.0, - "upper_limit": 100.0, + "upper_limit": 1.0, "numeric_type": "Continuous", - "unit_type": "Percent" + "unit_type": "Dimensionless" }, { "type": "ScheduleTypeLimit", - "identifier": "Fractional", - "lower_limit": 0.0, - "upper_limit": 1.0, + "identifier": "Temperature", + "lower_limit": -273.15, + "upper_limit": { + "type": "NoLimit" + }, "numeric_type": "Continuous", - "unit_type": "Dimensionless" + "unit_type": "Temperature" }, { "type": "ScheduleTypeLimit", @@ -1319,13 +1321,11 @@ }, { "type": "ScheduleTypeLimit", - "identifier": "Temperature", - "lower_limit": -273.15, - "upper_limit": { - "type": "NoLimit" - }, + "identifier": "Humidity", + "lower_limit": 0.0, + "upper_limit": 100.0, "numeric_type": "Continuous", - "unit_type": "Temperature" + "unit_type": "Percent" } ] }, @@ -1336,39 +1336,39 @@ "type": "ModifierSetAbridged", "identifier": "Generic_Interior_Visible_Modifier_Set", "wall_set": { - "exterior_modifier": "generic_wall_0.50", "interior_modifier": "generic_wall_0.50", - "type": "WallConstructionSetAbridged" + "exterior_modifier": "generic_wall_0.50", + "type": "WallModifierSetAbridged" }, "floor_set": { - "exterior_modifier": "generic_floor_0.20", "interior_modifier": "generic_floor_0.20", - "type": "FloorConstructionSetAbridged" + "exterior_modifier": "generic_floor_0.20", + "type": "FloorModifierSetAbridged" }, "roof_ceiling_set": { - "exterior_modifier": "generic_ceiling_0.80", "interior_modifier": "generic_ceiling_0.80", - "type": "RoofCeilingConstructionSetAbridged" + "exterior_modifier": "generic_ceiling_0.80", + "type": "RoofCeilingModifierSetAbridged" }, "aperture_set": { + "interior_modifier": "generic_interior_window_vis_0.88", "skylight_modifier": "generic_exterior_window_vis_0.64", "operable_modifier": "generic_exterior_window_vis_0.64", - "interior_modifier": "generic_interior_window_vis_0.88", - "type": "ApertureConstructionSetAbridged", + "type": "ApertureModifierSetAbridged", "window_modifier": "generic_exterior_window_vis_0.64" }, "door_set": { "exterior_modifier": "generic_opaque_door_0.50", + "overhead_modifier": "generic_opaque_door_0.50", + "interior_modifier": "generic_opaque_door_0.50", "exterior_glass_modifier": "generic_exterior_window_vis_0.64", "interior_glass_modifier": "generic_interior_window_vis_0.88", - "interior_modifier": "generic_opaque_door_0.50", - "overhead_modifier": "generic_opaque_door_0.50", - "type": "DoorConstructionSetAbridged" + "type": "DoorModifierSetAbridged" }, "shade_set": { - "exterior_modifier": "generic_exterior_shade_0.35", "interior_modifier": "generic_interior_shade_0.50", - "type": "ShadeSetAbridged" + "exterior_modifier": "generic_exterior_shade_0.35", + "type": "ShadeModifierSetAbridged" }, "air_boundary_modifier": "air_boundary" } @@ -1376,18 +1376,34 @@ "global_modifier_set": "Generic_Interior_Visible_Modifier_Set", "modifiers": [ { - "modifier": "void", + "modifier": { + "type": "void" + }, + "type": "glass", + "identifier": "generic_interior_window_vis_0.88", + "r_transmissivity": 0.9584154328610596, + "g_transmissivity": 0.9584154328610596, + "b_transmissivity": 0.9584154328610596, + "refraction_index": null, + "dependencies": [] + }, + { + "modifier": { + "type": "void" + }, "type": "plastic", - "identifier": "generic_wall_0.50", - "r_reflectance": 0.5, - "g_reflectance": 0.5, - "b_reflectance": 0.5, + "identifier": "generic_exterior_shade_0.35", + "r_reflectance": 0.35, + "g_reflectance": 0.35, + "b_reflectance": 0.35, "specularity": 0.0, "roughness": 0.0, "dependencies": [] }, { - "modifier": "void", + "modifier": { + "type": "void" + }, "type": "plastic", "identifier": "generic_floor_0.20", "r_reflectance": 0.2, @@ -1398,28 +1414,9 @@ "dependencies": [] }, { - "modifier": "void", - "type": "glass", - "identifier": "generic_exterior_window_vis_0.64", - "r_transmissivity": 0.6975761815384331, - "g_transmissivity": 0.6975761815384331, - "b_transmissivity": 0.6975761815384331, - "refraction_index": null, - "dependencies": [] - }, - { - "modifier": "void", - "type": "plastic", - "identifier": "generic_opaque_door_0.50", - "r_reflectance": 0.5, - "g_reflectance": 0.5, - "b_reflectance": 0.5, - "specularity": 0.0, - "roughness": 0.0, - "dependencies": [] - }, - { - "modifier": "void", + "modifier": { + "type": "void" + }, "type": "plastic", "identifier": "generic_ceiling_0.80", "r_reflectance": 0.8, @@ -1430,9 +1427,11 @@ "dependencies": [] }, { - "modifier": "void", + "modifier": { + "type": "void" + }, "type": "plastic", - "identifier": "generic_interior_shade_0.50", + "identifier": "generic_opaque_door_0.50", "r_reflectance": 0.5, "g_reflectance": 0.5, "b_reflectance": 0.5, @@ -1441,18 +1440,22 @@ "dependencies": [] }, { - "modifier": "void", + "modifier": { + "type": "void" + }, "type": "plastic", - "identifier": "generic_exterior_shade_0.35", - "r_reflectance": 0.35, - "g_reflectance": 0.35, - "b_reflectance": 0.35, + "identifier": "generic_wall_0.50", + "r_reflectance": 0.5, + "g_reflectance": 0.5, + "b_reflectance": 0.5, "specularity": 0.0, "roughness": 0.0, "dependencies": [] }, { - "modifier": "void", + "modifier": { + "type": "void" + }, "type": "glass", "identifier": "air_boundary", "r_transmissivity": 1.0, @@ -1462,12 +1465,27 @@ "dependencies": [] }, { - "modifier": "void", + "modifier": { + "type": "void" + }, + "type": "plastic", + "identifier": "generic_interior_shade_0.50", + "r_reflectance": 0.5, + "g_reflectance": 0.5, + "b_reflectance": 0.5, + "specularity": 0.0, + "roughness": 0.0, + "dependencies": [] + }, + { + "modifier": { + "type": "void" + }, "type": "glass", - "identifier": "generic_interior_window_vis_0.88", - "r_transmissivity": 0.9584154328610596, - "g_transmissivity": 0.9584154328610596, - "b_transmissivity": 0.9584154328610596, + "identifier": "generic_exterior_window_vis_0.64", + "r_transmissivity": 0.6975761815384331, + "g_transmissivity": 0.6975761815384331, + "b_transmissivity": 0.6975761815384331, "refraction_index": null, "dependencies": [] } diff --git a/samples/model/model_complete_single_zone_office.json b/samples/model/model_complete_single_zone_office.json index 2fbc113..49aec88 100644 --- a/samples/model/model_complete_single_zone_office.json +++ b/samples/model/model_complete_single_zone_office.json @@ -52,34 +52,21 @@ "global_construction_set": "Default Generic Construction Set", "constructions": [ { - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exterior Door", - "layers": [ - "Generic Painted Metal", - "Generic 25mm Insulation", - "Generic Painted Metal" - ] + "type": "ShadeConstruction", + "identifier": "Generic Shade", + "solar_reflectance": 0.35, + "visible_reflectance": 0.35, + "is_specular": false }, { "type": "WindowConstructionAbridged", - "identifier": "Triple Pane Window", + "identifier": "Generic Double Pane", "layers": [ - "Generic Clear Glass", - "Generic Window Air Gap", - "Generic Clear Glass", + "Generic Low-e Glass", "Generic Window Air Gap", "Generic Clear Glass" ] }, - { - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Floor", - "layers": [ - "Generic Acoustic Tile", - "Generic Ceiling Air Gap", - "Generic LW Concrete" - ] - }, { "type": "OpaqueConstructionAbridged", "identifier": "Generic Exterior Wall", @@ -91,6 +78,14 @@ "Generic Gypsum Board" ] }, + { + "type": "OpaqueConstructionAbridged", + "identifier": "Generic Ground Slab", + "layers": [ + "Generic 50mm Insulation", + "Generic HW Concrete" + ] + }, { "type": "OpaqueConstructionAbridged", "identifier": "Generic Exposed Floor", @@ -103,12 +98,23 @@ }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Underground Roof", + "identifier": "Thermal Mass Floor", "layers": [ - "Generic 50mm Insulation", - "Generic HW Concrete", - "Generic Ceiling Air Gap", - "Generic Acoustic Tile" + "Thick Stone" + ] + }, + { + "type": "WindowConstructionAbridged", + "identifier": "Generic Single Pane", + "layers": [ + "Generic Clear Glass" + ] + }, + { + "type": "OpaqueConstructionAbridged", + "identifier": "Generic Interior Door", + "layers": [ + "Generic 25mm Wood" ] }, { @@ -120,22 +126,13 @@ }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Roof", + "identifier": "Generic Interior Wall", "layers": [ - "Generic Roof Membrane", - "Generic 50mm Insulation", - "Generic LW Concrete", - "Generic Ceiling Air Gap", - "Generic Acoustic Tile" + "Generic Gypsum Board", + "Generic Wall Air Gap", + "Generic Gypsum Board" ] }, - { - "type": "ShadeConstruction", - "identifier": "Generic Shade", - "solar_reflectance": 0.35, - "visible_reflectance": 0.35, - "is_specular": false - }, { "type": "OpaqueConstructionAbridged", "identifier": "Generic Underground Wall", @@ -147,20 +144,19 @@ ] }, { - "type": "WindowConstructionAbridged", - "identifier": "Generic Double Pane", + "type": "OpaqueConstructionAbridged", + "identifier": "Generic Exterior Door", "layers": [ - "Generic Low-e Glass", - "Generic Window Air Gap", - "Generic Clear Glass" + "Generic Painted Metal", + "Generic 25mm Insulation", + "Generic Painted Metal" ] }, { - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Door", - "layers": [ - "Generic 25mm Wood" - ] + "type": "AirBoundaryConstructionAbridged", + "identifier": "Generic Air Boundary", + "air_mixing_per_area": 0.1, + "air_mixing_schedule": "Always On" }, { "type": "ShadeConstruction", @@ -171,46 +167,50 @@ }, { "type": "OpaqueConstructionAbridged", - "identifier": "Thermal Mass Floor", + "identifier": "Generic Roof", "layers": [ - "Thick Stone" + "Generic Roof Membrane", + "Generic 50mm Insulation", + "Generic LW Concrete", + "Generic Ceiling Air Gap", + "Generic Acoustic Tile" ] }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Ground Slab", + "identifier": "Generic Interior Floor", "layers": [ - "Generic 50mm Insulation", - "Generic HW Concrete" + "Generic Acoustic Tile", + "Generic Ceiling Air Gap", + "Generic LW Concrete" ] }, - { - "type": "AirBoundaryConstructionAbridged", - "identifier": "Generic Air Boundary", - "air_mixing_per_area": 0.1, - "air_mixing_schedule": "Always On" - }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Wall", + "identifier": "Generic Interior Ceiling", "layers": [ - "Generic Gypsum Board", - "Generic Wall Air Gap", - "Generic Gypsum Board" + "Generic LW Concrete", + "Generic Ceiling Air Gap", + "Generic Acoustic Tile" ] }, { "type": "WindowConstructionAbridged", - "identifier": "Generic Single Pane", + "identifier": "Triple Pane Window", "layers": [ + "Generic Clear Glass", + "Generic Window Air Gap", + "Generic Clear Glass", + "Generic Window Air Gap", "Generic Clear Glass" ] }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Ceiling", + "identifier": "Generic Underground Roof", "layers": [ - "Generic LW Concrete", + "Generic 50mm Insulation", + "Generic HW Concrete", "Generic Ceiling Air Gap", "Generic Acoustic Tile" ] @@ -219,27 +219,32 @@ "materials": [ { "type": "EnergyMaterial", - "identifier": "Generic 25mm Insulation", - "roughness": "MediumRough", - "thickness": 0.05, - "conductivity": 0.03, - "density": 43.0, - "specific_heat": 1210.0, + "identifier": "Generic Acoustic Tile", + "roughness": "MediumSmooth", + "thickness": 0.02, + "conductivity": 0.06, + "density": 368.0, + "specific_heat": 590.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 + "solar_absorptance": 0.2, + "visible_absorptance": 0.2 }, { - "type": "EnergyMaterial", - "identifier": "Thick Stone", - "roughness": "Rough", - "thickness": 0.3, - "conductivity": 2.31, - "density": 2322.0, - "specific_heat": 832.0, - "thermal_absorptance": 0.95, - "solar_absorptance": 0.75, - "visible_absorptance": 0.8 + "type": "EnergyWindowMaterialGlazing", + "identifier": "Generic Low-e Glass", + "thickness": 0.006, + "solar_transmittance": 0.45, + "solar_reflectance": 0.36, + "solar_reflectance_back": 0.36, + "visible_transmittance": 0.71, + "visible_reflectance": 0.21, + "visible_reflectance_back": 0.21, + "infrared_transmittance": 0.0, + "emissivity": 0.84, + "emissivity_back": 0.047, + "conductivity": 1.0, + "dirt_correction": 1.0, + "solar_diffusing": false }, { "type": "EnergyMaterial", @@ -255,40 +260,10 @@ }, { "type": "EnergyMaterial", - "identifier": "Generic Painted Metal", - "roughness": "Smooth", - "thickness": 0.0015, - "conductivity": 45.0, - "density": 7690.0, - "specific_heat": 410.0, - "thermal_absorptance": 0.9, - "solar_absorptance": 0.5, - "visible_absorptance": 0.5 - }, - { - "type": "EnergyMaterial", - "identifier": "Generic 25mm Wood", - "roughness": "MediumSmooth", - "thickness": 0.0254, - "conductivity": 0.15, - "density": 608.0, - "specific_heat": 1630.0, - "thermal_absorptance": 0.9, - "solar_absorptance": 0.5, - "visible_absorptance": 0.5 - }, - { - "type": "EnergyWindowMaterialGas", - "identifier": "Generic Window Air Gap", - "thickness": 0.0127, - "gas_type": "Air" - }, - { - "type": "EnergyMaterial", - "identifier": "Generic Ceiling Air Gap", + "identifier": "Generic Wall Air Gap", "roughness": "Smooth", "thickness": 0.1, - "conductivity": 0.556, + "conductivity": 0.667, "density": 1.28, "specific_heat": 1000.0, "thermal_absorptance": 0.9, @@ -297,53 +272,36 @@ }, { "type": "EnergyMaterial", - "identifier": "Generic Wall Air Gap", + "identifier": "Generic Ceiling Air Gap", "roughness": "Smooth", "thickness": 0.1, - "conductivity": 0.667, + "conductivity": 0.556, "density": 1.28, "specific_heat": 1000.0, "thermal_absorptance": 0.9, "solar_absorptance": 0.7, "visible_absorptance": 0.7 }, - { - "type": "EnergyWindowMaterialGlazing", - "identifier": "Generic Clear Glass", - "thickness": 0.006, - "solar_transmittance": 0.77, - "solar_reflectance": 0.07, - "solar_reflectance_back": 0.07, - "visible_transmittance": 0.88, - "visible_reflectance": 0.08, - "visible_reflectance_back": 0.08, - "infrared_transmittance": 0.0, - "emissivity": 0.84, - "emissivity_back": 0.84, - "conductivity": 1.0, - "dirt_correction": 1.0, - "solar_diffusing": false - }, { "type": "EnergyMaterial", - "identifier": "Generic Brick", + "identifier": "Generic 25mm Insulation", "roughness": "MediumRough", - "thickness": 0.1, - "conductivity": 0.9, - "density": 1920.0, - "specific_heat": 790.0, + "thickness": 0.05, + "conductivity": 0.03, + "density": 43.0, + "specific_heat": 1210.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.65, - "visible_absorptance": 0.65 + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 }, { "type": "EnergyMaterial", - "identifier": "Generic LW Concrete", + "identifier": "Generic HW Concrete", "roughness": "MediumRough", - "thickness": 0.1, - "conductivity": 0.53, - "density": 1280.0, - "specific_heat": 840.0, + "thickness": 0.2, + "conductivity": 1.95, + "density": 2240.0, + "specific_heat": 900.0, "thermal_absorptance": 0.9, "solar_absorptance": 0.8, "visible_absorptance": 0.8 @@ -362,322 +320,183 @@ }, { "type": "EnergyMaterial", - "identifier": "Generic HW Concrete", + "identifier": "Generic 50mm Insulation", "roughness": "MediumRough", - "thickness": 0.2, - "conductivity": 1.95, - "density": 2240.0, - "specific_heat": 900.0, + "thickness": 0.05, + "conductivity": 0.03, + "density": 43.0, + "specific_heat": 1210.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.8, + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 + }, + { + "type": "EnergyMaterial", + "identifier": "Thick Stone", + "roughness": "Rough", + "thickness": 0.3, + "conductivity": 2.31, + "density": 2322.0, + "specific_heat": 832.0, + "thermal_absorptance": 0.95, + "solar_absorptance": 0.75, "visible_absorptance": 0.8 }, { - "type": "EnergyWindowMaterialGlazing", - "identifier": "Generic Low-e Glass", - "thickness": 0.006, - "solar_transmittance": 0.45, - "solar_reflectance": 0.36, - "solar_reflectance_back": 0.36, - "visible_transmittance": 0.71, - "visible_reflectance": 0.21, - "visible_reflectance_back": 0.21, - "infrared_transmittance": 0.0, - "emissivity": 0.84, - "emissivity_back": 0.047, - "conductivity": 1.0, - "dirt_correction": 1.0, - "solar_diffusing": false + "type": "EnergyMaterial", + "identifier": "Generic LW Concrete", + "roughness": "MediumRough", + "thickness": 0.1, + "conductivity": 0.53, + "density": 1280.0, + "specific_heat": 840.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.8, + "visible_absorptance": 0.8 }, { "type": "EnergyMaterial", - "identifier": "Generic Acoustic Tile", + "identifier": "Generic 25mm Wood", "roughness": "MediumSmooth", - "thickness": 0.02, - "conductivity": 0.06, - "density": 368.0, - "specific_heat": 590.0, + "thickness": 0.0254, + "conductivity": 0.15, + "density": 608.0, + "specific_heat": 1630.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.2, - "visible_absorptance": 0.2 + "solar_absorptance": 0.5, + "visible_absorptance": 0.5 }, { "type": "EnergyMaterial", - "identifier": "Generic 50mm Insulation", - "roughness": "MediumRough", - "thickness": 0.05, - "conductivity": 0.03, - "density": 43.0, - "specific_heat": 1210.0, + "identifier": "Generic Painted Metal", + "roughness": "Smooth", + "thickness": 0.0015, + "conductivity": 45.0, + "density": 7690.0, + "specific_heat": 410.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 - } - ], - "hvacs": [ - { - "type": "IdealAirSystemAbridged", - "identifier": "Tiny_House_Office_IdealAir", - "economizer_type": "DifferentialDryBulb", - "demand_controlled_ventilation": false, - "sensible_heat_recovery": 0.0, - "latent_heat_recovery": 0.0, - "heating_air_temperature": 50.0, - "cooling_air_temperature": 13.0, - "heating_limit": { - "type": "Autosize" - }, - "cooling_limit": { - "type": "Autosize" - } - } - ], - "program_types": [ + "solar_absorptance": 0.5, + "visible_absorptance": 0.5 + }, { - "type": "ProgramTypeAbridged", - "identifier": "Generic Office Program", - "people": { - "type": "PeopleAbridged", - "identifier": "Generic Office People", - "people_per_area": 0.0565, - "radiant_fraction": 0.3, - "latent_fraction": { - "type": "Autocalculate" - }, - "occupancy_schedule": "Generic Office Occupancy", - "activity_schedule": "Generic Office Activity" - }, - "lighting": { - "type": "LightingAbridged", - "identifier": "Generic Office Lighting", - "watts_per_area": 10.55, - "return_air_fraction": 0.0, - "radiant_fraction": 0.7, - "visible_fraction": 0.2, - "schedule": "Generic Office Lighting" - }, - "electric_equipment": { - "type": "ElectricEquipmentAbridged", - "identifier": "Generic Office Equipment", - "watts_per_area": 10.33, - "radiant_fraction": 0.5, - "latent_fraction": 0.0, - "lost_fraction": 0.0, - "schedule": "Generic Office Equipment" - }, - "infiltration": { - "type": "InfiltrationAbridged", - "identifier": "Generic Office Infiltration", - "flow_per_exterior_area": 0.0002266, - "schedule": "Generic Office Infiltration" - }, - "ventilation": { - "type": "VentilationAbridged", - "identifier": "Generic Office Ventilation", - "flow_per_person": 0.00236, - "flow_per_area": 0.000305 - }, - "setpoint": { - "type": "SetpointAbridged", - "identifier": "Generic Office Setpoints", - "heating_schedule": "Generic Office Heating", - "cooling_schedule": "Generic Office Cooling" - } - } - ], - "schedules": [ + "type": "EnergyWindowMaterialGas", + "identifier": "Generic Window Air Gap", + "thickness": 0.0127, + "gas_type": "Air" + }, { - "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Heating", - "day_schedules": [ - { - "type": "ScheduleDay", - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", - "values": [ - 15.6 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", - "values": [ - 15.6 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", - "values": [ - 15.6, - 17.6, - 19.6, - 21.0, - 15.6 - ], - "times": [ - [ - 0, - 0 - ], - [ - 5, - 0 - ], - [ - 6, - 0 - ], - [ - 7, - 0 - ], - [ - 22, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", - "values": [ - 15.6, - 17.8, - 20.0, - 21.0, - 15.6 - ], - "times": [ - [ - 0, - 0 - ], - [ - 5, - 0 - ], - [ - 6, - 0 - ], - [ - 7, - 0 - ], - [ - 22, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", - "values": [ - 15.6, - 17.8, - 20.0, - 21.0, - 15.6 - ], - "times": [ - [ - 0, - 0 - ], - [ - 5, - 0 - ], - [ - 6, - 0 - ], - [ - 7, - 0 - ], - [ - 17, - 0 - ] - ], - "interpolate": false - } - ], - "default_day_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", - "schedule_rules": [ - { - "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", - "apply_sunday": false, - "apply_monday": true, - "apply_tuesday": true, - "apply_wednesday": true, - "apply_thursday": true, - "apply_friday": true, - "apply_saturday": false, - "start_date": [ - 1, - 1 - ], - "end_date": [ - 12, - 31 - ] - }, - { - "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", - "apply_sunday": false, - "apply_monday": false, - "apply_tuesday": false, - "apply_wednesday": false, - "apply_thursday": false, - "apply_friday": false, - "apply_saturday": true, - "start_date": [ - 1, - 1 - ], - "end_date": [ - 12, - 31 - ] - } - ], - "holiday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", - "summer_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", - "winter_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", - "schedule_type_limit": "Temperature" + "type": "EnergyMaterial", + "identifier": "Generic Brick", + "roughness": "MediumRough", + "thickness": 0.1, + "conductivity": 0.9, + "density": 1920.0, + "specific_heat": 790.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.65, + "visible_absorptance": 0.65 }, + { + "type": "EnergyWindowMaterialGlazing", + "identifier": "Generic Clear Glass", + "thickness": 0.006, + "solar_transmittance": 0.77, + "solar_reflectance": 0.07, + "solar_reflectance_back": 0.07, + "visible_transmittance": 0.88, + "visible_reflectance": 0.08, + "visible_reflectance_back": 0.08, + "infrared_transmittance": 0.0, + "emissivity": 0.84, + "emissivity_back": 0.84, + "conductivity": 1.0, + "dirt_correction": 1.0, + "solar_diffusing": false + } + ], + "hvacs": [ + { + "type": "IdealAirSystemAbridged", + "identifier": "Tiny_House_Office_IdealAir", + "economizer_type": "DifferentialDryBulb", + "demand_controlled_ventilation": false, + "sensible_heat_recovery": 0.0, + "latent_heat_recovery": 0.0, + "heating_air_temperature": 50.0, + "cooling_air_temperature": 13.0, + "heating_limit": { + "type": "Autosize" + }, + "cooling_limit": { + "type": "Autosize" + } + } + ], + "program_types": [ + { + "type": "ProgramTypeAbridged", + "identifier": "Generic Office Program", + "people": { + "type": "PeopleAbridged", + "identifier": "Generic Office People", + "people_per_area": 0.0565, + "radiant_fraction": 0.3, + "latent_fraction": { + "type": "Autocalculate" + }, + "occupancy_schedule": "Generic Office Occupancy", + "activity_schedule": "Generic Office Activity" + }, + "lighting": { + "type": "LightingAbridged", + "identifier": "Generic Office Lighting", + "watts_per_area": 10.55, + "return_air_fraction": 0.0, + "radiant_fraction": 0.7, + "visible_fraction": 0.2, + "schedule": "Generic Office Lighting" + }, + "electric_equipment": { + "type": "ElectricEquipmentAbridged", + "identifier": "Generic Office Equipment", + "watts_per_area": 10.33, + "radiant_fraction": 0.5, + "latent_fraction": 0.0, + "lost_fraction": 0.0, + "schedule": "Generic Office Equipment" + }, + "infiltration": { + "type": "InfiltrationAbridged", + "identifier": "Generic Office Infiltration", + "flow_per_exterior_area": 0.0002266, + "schedule": "Generic Office Infiltration" + }, + "ventilation": { + "type": "VentilationAbridged", + "identifier": "Generic Office Ventilation", + "flow_per_person": 0.00236, + "flow_per_area": 0.000305 + }, + "setpoint": { + "type": "SetpointAbridged", + "identifier": "Generic Office Setpoints", + "heating_schedule": "Generic Office Heating", + "cooling_schedule": "Generic Office Cooling" + } + } + ], + "schedules": [ { "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Lighting", + "identifier": "Generic Office Equipment", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", "values": [ - 0.05, - 0.04311628, - 0.05 + 0.2307553806, + 0.288107175, + 0.2307553806 ], "times": [ [ @@ -697,7 +516,7 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", "values": [ 1.0 ], @@ -711,7 +530,7 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", "values": [ 0.0 ], @@ -725,14 +544,14 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", "values": [ - 0.05, - 0.08623256, - 0.25869768, - 0.12934884, - 0.04311628, - 0.05 + 0.2307553806, + 0.381234796, + 0.476543495, + 0.3335804465, + 0.285926097, + 0.2307553806 ], "times": [ [ @@ -764,69 +583,54 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", "values": [ - 0.05, - 0.1, - 0.08623256, - 0.25869768, - 0.77609304, - 0.4311628, - 0.25869768, - 0.17246512, - 0.08623256, - 0.04311628 + 0.3076738408, + 0.381234796, + 0.857778291, + 0.762469592, + 0.857778291, + 0.476543495, + 0.381234796 ], "times": [ [ 0, 0 ], - [ - 5, - 0 - ], [ 6, 0 ], - [ - 7, - 0 - ], [ 8, 0 ], [ - 17, - 0 - ], - [ - 18, + 12, 0 ], [ - 20, + 13, 0 ], [ - 22, + 17, 0 ], [ - 23, + 18, 0 ] ], "interpolate": false } ], - "default_day_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", + "default_day_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", "schedule_rules": [ { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", + "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", "apply_sunday": false, "apply_monday": true, "apply_tuesday": true, @@ -845,7 +649,7 @@ }, { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", + "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", "apply_sunday": false, "apply_monday": false, "apply_tuesday": false, @@ -863,20 +667,20 @@ ] } ], - "holiday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", - "summer_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", - "winter_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", + "holiday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "summer_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", + "winter_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", "schedule_type_limit": "Fractional" }, { "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Activity", + "identifier": "Generic Office Infiltration", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "OfficeMedium ACTIVITY_SCH_Default", + "identifier": "OfficeMedium INFIL_SCH_PNNL_Default", "values": [ - 120.0 + 1.0 ], "times": [ [ @@ -888,48 +692,156 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium ACTIVITY_SCH_Default_SmrDsn", + "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", "values": [ - 120.0 + 1.0, + 0.25, + 1.0 + ], + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 22, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", + "values": [ + 1.0, + 0.25, + 1.0 ], "times": [ [ 0, 0 + ], + [ + 6, + 0 + ], + [ + 18, + 0 ] ], "interpolate": false }, { "type": "ScheduleDay", - "identifier": "OfficeMedium ACTIVITY_SCH_Default_WntrDsn", + "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy", "values": [ - 120.0 + 1.0, + 0.25, + 1.0 + ], + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 22, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat", + "values": [ + 1.0, + 0.25, + 1.0 ], "times": [ [ 0, 0 + ], + [ + 6, + 0 + ], + [ + 18, + 0 ] ], "interpolate": false } ], - "default_day_schedule": "OfficeMedium ACTIVITY_SCH_Default", - "holiday_schedule": "OfficeMedium ACTIVITY_SCH_Default", - "summer_designday_schedule": "OfficeMedium ACTIVITY_SCH_Default_SmrDsn", - "winter_designday_schedule": "OfficeMedium ACTIVITY_SCH_Default_WntrDsn", - "schedule_type_limit": "Activity Level" + "default_day_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", + "schedule_rules": [ + { + "type": "ScheduleRuleAbridged", + "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Wkdy", + "apply_sunday": false, + "apply_monday": true, + "apply_tuesday": true, + "apply_wednesday": true, + "apply_thursday": true, + "apply_friday": true, + "apply_saturday": false, + "start_date": [ + 1, + 1 + ], + "end_date": [ + 12, + 31 + ] + }, + { + "type": "ScheduleRuleAbridged", + "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Sat", + "apply_sunday": false, + "apply_monday": false, + "apply_tuesday": false, + "apply_wednesday": false, + "apply_thursday": false, + "apply_friday": false, + "apply_saturday": true, + "start_date": [ + 1, + 1 + ], + "end_date": [ + 12, + 31 + ] + } + ], + "holiday_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", + "summer_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", + "winter_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", + "schedule_type_limit": "Fractional" }, { "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Infiltration", + "identifier": "Generic Office Cooling", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "OfficeMedium INFIL_SCH_PNNL_Default", + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", "values": [ - 1.0 + 26.7 ], "times": [ [ @@ -941,21 +853,31 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", "values": [ - 1.0, - 0.25, - 1.0 + 26.7, + 25.7, + 25.0, + 24.0, + 26.7 ], "times": [ [ 0, 0 ], + [ + 5, + 0 + ], [ 6, 0 ], + [ + 7, + 0 + ], [ 22, 0 @@ -965,45 +887,45 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", "values": [ - 1.0, - 0.25, - 1.0 + 26.7 ], "times": [ [ 0, 0 - ], - [ - 6, - 0 - ], - [ - 18, - 0 ] ], "interpolate": false }, { "type": "ScheduleDay", - "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy", + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", "values": [ - 1.0, - 0.25, - 1.0 + 26.7, + 25.6, + 25.0, + 24.0, + 26.7 ], "times": [ [ 0, 0 ], + [ + 5, + 0 + ], [ 6, 0 ], + [ + 7, + 0 + ], [ 22, 0 @@ -1013,34 +935,44 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat", + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", "values": [ - 1.0, - 0.25, - 1.0 + 26.7, + 25.7, + 25.0, + 24.0, + 26.7 ], "times": [ [ 0, 0 ], + [ + 5, + 0 + ], [ 6, 0 ], [ - 18, + 7, + 0 + ], + [ + 17, 0 ] ], "interpolate": false } ], - "default_day_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", + "default_day_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", "schedule_rules": [ { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Wkdy", + "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", "apply_sunday": false, "apply_monday": true, "apply_tuesday": true, @@ -1059,7 +991,7 @@ }, { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Sat", + "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", "apply_sunday": false, "apply_monday": false, "apply_tuesday": false, @@ -1077,22 +1009,75 @@ ] } ], - "holiday_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", - "summer_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", - "winter_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", - "schedule_type_limit": "Fractional" + "holiday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", + "summer_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", + "winter_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", + "schedule_type_limit": "Temperature" }, { "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Equipment", + "identifier": "Generic Office Activity", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", + "identifier": "OfficeMedium ACTIVITY_SCH_Default", "values": [ - 0.2307553806, - 0.288107175, - 0.2307553806 + 120.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium ACTIVITY_SCH_Default_SmrDsn", + "values": [ + 120.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium ACTIVITY_SCH_Default_WntrDsn", + "values": [ + 120.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + } + ], + "default_day_schedule": "OfficeMedium ACTIVITY_SCH_Default", + "holiday_schedule": "OfficeMedium ACTIVITY_SCH_Default", + "summer_designday_schedule": "OfficeMedium ACTIVITY_SCH_Default_SmrDsn", + "winter_designday_schedule": "OfficeMedium ACTIVITY_SCH_Default_WntrDsn", + "schedule_type_limit": "Activity Level" + }, + { + "type": "ScheduleRulesetAbridged", + "identifier": "Generic Office Lighting", + "day_schedules": [ + { + "type": "ScheduleDay", + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", + "values": [ + 0.05, + 0.04311628, + 0.05 ], "times": [ [ @@ -1112,7 +1097,7 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", "values": [ 1.0 ], @@ -1126,7 +1111,7 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", "values": [ 0.0 ], @@ -1140,14 +1125,14 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", "values": [ - 0.2307553806, - 0.381234796, - 0.476543495, - 0.3335804465, - 0.285926097, - 0.2307553806 + 0.05, + 0.08623256, + 0.25869768, + 0.12934884, + 0.04311628, + 0.05 ], "times": [ [ @@ -1179,54 +1164,69 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", "values": [ - 0.3076738408, - 0.381234796, - 0.857778291, - 0.762469592, - 0.857778291, - 0.476543495, - 0.381234796 + 0.05, + 0.1, + 0.08623256, + 0.25869768, + 0.77609304, + 0.4311628, + 0.25869768, + 0.17246512, + 0.08623256, + 0.04311628 ], "times": [ [ 0, 0 ], + [ + 5, + 0 + ], [ 6, 0 ], + [ + 7, + 0 + ], [ 8, 0 ], [ - 12, + 17, 0 ], [ - 13, + 18, + 0 + ], + [ + 20, 0 ], [ - 17, + 22, 0 ], [ - 18, + 23, 0 ] ], "interpolate": false } ], - "default_day_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", + "default_day_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", "schedule_rules": [ { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", + "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", "apply_sunday": false, "apply_monday": true, "apply_tuesday": true, @@ -1245,7 +1245,7 @@ }, { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", "apply_sunday": false, "apply_monday": false, "apply_tuesday": false, @@ -1263,20 +1263,42 @@ ] } ], - "holiday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", - "summer_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", - "winter_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", + "holiday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", + "summer_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", + "winter_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", "schedule_type_limit": "Fractional" }, { "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Cooling", + "identifier": "Always On", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", + "identifier": "Always On_Day Schedule", "values": [ - 26.7 + 1.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + } + ], + "default_day_schedule": "Always On_Day Schedule", + "schedule_type_limit": "Fractional" + }, + { + "type": "ScheduleRulesetAbridged", + "identifier": "Generic Office Heating", + "day_schedules": [ + { + "type": "ScheduleDay", + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "values": [ + 15.6 ], "times": [ [ @@ -1288,13 +1310,27 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", "values": [ - 26.7, - 25.7, - 25.0, - 24.0, - 26.7 + 15.6 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", + "values": [ + 15.6, + 17.6, + 19.6, + 21.0, + 15.6 ], "times": [ [ @@ -1322,27 +1358,13 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", - "values": [ - 26.7 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", "values": [ - 26.7, - 25.6, - 25.0, - 24.0, - 26.7 + 15.6, + 17.8, + 20.0, + 21.0, + 15.6 ], "times": [ [ @@ -1370,13 +1392,13 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", "values": [ - 26.7, - 25.7, - 25.0, - 24.0, - 26.7 + 15.6, + 17.8, + 20.0, + 21.0, + 15.6 ], "times": [ [ @@ -1403,11 +1425,11 @@ "interpolate": false } ], - "default_day_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", + "default_day_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", "schedule_rules": [ { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", + "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", "apply_sunday": false, "apply_monday": true, "apply_tuesday": true, @@ -1426,7 +1448,7 @@ }, { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", + "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", "apply_sunday": false, "apply_monday": false, "apply_tuesday": false, @@ -1444,33 +1466,11 @@ ] } ], - "holiday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", - "summer_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", - "winter_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", + "holiday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "summer_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", + "winter_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", "schedule_type_limit": "Temperature" }, - { - "type": "ScheduleRulesetAbridged", - "identifier": "Always On", - "day_schedules": [ - { - "type": "ScheduleDay", - "identifier": "Always On_Day Schedule", - "values": [ - 1.0 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - } - ], - "default_day_schedule": "Always On_Day Schedule", - "schedule_type_limit": "Fractional" - }, { "type": "ScheduleRulesetAbridged", "identifier": "Generic Office Occupancy", @@ -1689,23 +1689,23 @@ }, { "type": "ScheduleTypeLimit", - "identifier": "Activity Level", - "lower_limit": 0.0, + "identifier": "Temperature", + "lower_limit": -273.15, "upper_limit": { "type": "NoLimit" }, "numeric_type": "Continuous", - "unit_type": "ActivityLevel" + "unit_type": "Temperature" }, { "type": "ScheduleTypeLimit", - "identifier": "Temperature", - "lower_limit": -273.15, + "identifier": "Activity Level", + "lower_limit": 0.0, "upper_limit": { "type": "NoLimit" }, "numeric_type": "Continuous", - "unit_type": "Temperature" + "unit_type": "ActivityLevel" } ] }, @@ -1716,39 +1716,39 @@ "type": "ModifierSetAbridged", "identifier": "Generic_Interior_Visible_Modifier_Set", "wall_set": { - "exterior_modifier": "generic_wall_0.50", "interior_modifier": "generic_wall_0.50", - "type": "WallConstructionSetAbridged" + "exterior_modifier": "generic_wall_0.50", + "type": "WallModifierSetAbridged" }, "floor_set": { - "exterior_modifier": "generic_floor_0.20", "interior_modifier": "generic_floor_0.20", - "type": "FloorConstructionSetAbridged" + "exterior_modifier": "generic_floor_0.20", + "type": "FloorModifierSetAbridged" }, "roof_ceiling_set": { - "exterior_modifier": "generic_ceiling_0.80", "interior_modifier": "generic_ceiling_0.80", - "type": "RoofCeilingConstructionSetAbridged" + "exterior_modifier": "generic_ceiling_0.80", + "type": "RoofCeilingModifierSetAbridged" }, "aperture_set": { + "interior_modifier": "generic_interior_window_vis_0.88", "skylight_modifier": "generic_exterior_window_vis_0.64", "operable_modifier": "generic_exterior_window_vis_0.64", - "interior_modifier": "generic_interior_window_vis_0.88", - "type": "ApertureConstructionSetAbridged", + "type": "ApertureModifierSetAbridged", "window_modifier": "generic_exterior_window_vis_0.64" }, "door_set": { "exterior_modifier": "generic_opaque_door_0.50", + "overhead_modifier": "generic_opaque_door_0.50", + "interior_modifier": "generic_opaque_door_0.50", "exterior_glass_modifier": "generic_exterior_window_vis_0.64", "interior_glass_modifier": "generic_interior_window_vis_0.88", - "interior_modifier": "generic_opaque_door_0.50", - "overhead_modifier": "generic_opaque_door_0.50", - "type": "DoorConstructionSetAbridged" + "type": "DoorModifierSetAbridged" }, "shade_set": { - "exterior_modifier": "generic_exterior_shade_0.35", "interior_modifier": "generic_interior_shade_0.50", - "type": "ShadeSetAbridged" + "exterior_modifier": "generic_exterior_shade_0.35", + "type": "ShadeModifierSetAbridged" }, "air_boundary_modifier": "air_boundary" } @@ -1756,52 +1756,36 @@ "global_modifier_set": "Generic_Interior_Visible_Modifier_Set", "modifiers": [ { - "modifier": "void", - "type": "plastic", - "identifier": "generic_wall_0.50", - "r_reflectance": 0.5, - "g_reflectance": 0.5, - "b_reflectance": 0.5, - "specularity": 0.0, - "roughness": 0.0, - "dependencies": [] - }, - { - "modifier": "void", - "type": "plastic", - "identifier": "generic_floor_0.20", - "r_reflectance": 0.2, - "g_reflectance": 0.2, - "b_reflectance": 0.2, - "specularity": 0.0, - "roughness": 0.0, - "dependencies": [] - }, - { - "modifier": "void", + "modifier": { + "type": "void" + }, "type": "glass", - "identifier": "generic_exterior_window_vis_0.64", - "r_transmissivity": 0.6975761815384331, - "g_transmissivity": 0.6975761815384331, - "b_transmissivity": 0.6975761815384331, + "identifier": "generic_interior_window_vis_0.88", + "r_transmissivity": 0.9584154328610596, + "g_transmissivity": 0.9584154328610596, + "b_transmissivity": 0.9584154328610596, "refraction_index": null, "dependencies": [] }, { - "modifier": "void", + "modifier": { + "type": "void" + }, "type": "plastic", - "identifier": "generic_opaque_door_0.50", - "r_reflectance": 0.5, - "g_reflectance": 0.5, - "b_reflectance": 0.5, + "identifier": "generic_exterior_shade_0.35", + "r_reflectance": 0.35, + "g_reflectance": 0.35, + "b_reflectance": 0.35, "specularity": 0.0, "roughness": 0.0, "dependencies": [] }, { - "modifier": "void", + "modifier": { + "type": "void" + }, "type": "plastic", - "identifier": "generic_context_0.20", + "identifier": "generic_floor_0.20", "r_reflectance": 0.2, "g_reflectance": 0.2, "b_reflectance": 0.2, @@ -1810,7 +1794,9 @@ "dependencies": [] }, { - "modifier": "void", + "modifier": { + "type": "void" + }, "type": "plastic", "identifier": "generic_ceiling_0.80", "r_reflectance": 0.8, @@ -1821,9 +1807,11 @@ "dependencies": [] }, { - "modifier": "void", + "modifier": { + "type": "void" + }, "type": "plastic", - "identifier": "generic_interior_shade_0.50", + "identifier": "generic_opaque_door_0.50", "r_reflectance": 0.5, "g_reflectance": 0.5, "b_reflectance": 0.5, @@ -1832,18 +1820,35 @@ "dependencies": [] }, { - "modifier": "void", + "modifier": { + "type": "void" + }, "type": "plastic", - "identifier": "generic_exterior_shade_0.35", - "r_reflectance": 0.35, - "g_reflectance": 0.35, - "b_reflectance": 0.35, + "identifier": "generic_wall_0.50", + "r_reflectance": 0.5, + "g_reflectance": 0.5, + "b_reflectance": 0.5, "specularity": 0.0, "roughness": 0.0, "dependencies": [] }, { - "modifier": "void", + "modifier": { + "type": "void" + }, + "type": "plastic", + "identifier": "generic_context_0.20", + "r_reflectance": 0.2, + "g_reflectance": 0.2, + "b_reflectance": 0.2, + "specularity": 0.0, + "roughness": 0.0, + "dependencies": [] + }, + { + "modifier": { + "type": "void" + }, "type": "glass", "identifier": "air_boundary", "r_transmissivity": 1.0, @@ -1853,12 +1858,27 @@ "dependencies": [] }, { - "modifier": "void", + "modifier": { + "type": "void" + }, + "type": "plastic", + "identifier": "generic_interior_shade_0.50", + "r_reflectance": 0.5, + "g_reflectance": 0.5, + "b_reflectance": 0.5, + "specularity": 0.0, + "roughness": 0.0, + "dependencies": [] + }, + { + "modifier": { + "type": "void" + }, "type": "glass", - "identifier": "generic_interior_window_vis_0.88", - "r_transmissivity": 0.9584154328610596, - "g_transmissivity": 0.9584154328610596, - "b_transmissivity": 0.9584154328610596, + "identifier": "generic_exterior_window_vis_0.64", + "r_transmissivity": 0.6975761815384331, + "g_transmissivity": 0.6975761815384331, + "b_transmissivity": 0.6975761815384331, "refraction_index": null, "dependencies": [] } diff --git a/samples/model/model_complete_user_data.json b/samples/model/model_complete_user_data.json index d651733..b7a6fbc 100644 --- a/samples/model/model_complete_user_data.json +++ b/samples/model/model_complete_user_data.json @@ -51,22 +51,52 @@ ], "global_construction_set": "Default Generic Construction Set", "constructions": [ + { + "type": "ShadeConstruction", + "identifier": "Indoor_Light_Shelf", + "solar_reflectance": 0.7, + "visible_reflectance": 0.7, + "is_specular": false + }, + { + "type": "ShadeConstruction", + "identifier": "Generic Shade", + "solar_reflectance": 0.35, + "visible_reflectance": 0.35, + "is_specular": false + }, + { + "type": "AirBoundaryConstructionAbridged", + "identifier": "Generic Air Boundary", + "air_mixing_per_area": 0.1, + "air_mixing_schedule": "Always On" + }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exterior Door", + "identifier": "Generic Interior Wall", "layers": [ - "Generic Painted Metal", - "Generic 25mm Insulation", - "Generic Painted Metal" + "Generic Gypsum Board", + "Generic Wall Air Gap", + "Generic Gypsum Board" ] }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Floor", + "identifier": "Generic Underground Wall", "layers": [ - "Generic Acoustic Tile", - "Generic Ceiling Air Gap", - "Generic LW Concrete" + "Generic 50mm Insulation", + "Generic HW Concrete", + "Generic Wall Air Gap", + "Generic Gypsum Board" + ] + }, + { + "type": "OpaqueConstructionAbridged", + "identifier": "Generic Exterior Door", + "layers": [ + "Generic Painted Metal", + "Generic 25mm Insulation", + "Generic Painted Metal" ] }, { @@ -80,13 +110,11 @@ }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exterior Wall", + "identifier": "Generic Interior Floor", "layers": [ - "Generic Brick", - "Generic LW Concrete", - "Generic 50mm Insulation", - "Generic Wall Air Gap", - "Generic Gypsum Board" + "Generic Acoustic Tile", + "Generic Ceiling Air Gap", + "Generic LW Concrete" ] }, { @@ -99,40 +127,45 @@ }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Ceiling", + "identifier": "Generic Roof", "layers": [ + "Generic Roof Membrane", + "Generic 50mm Insulation", "Generic LW Concrete", "Generic Ceiling Air Gap", "Generic Acoustic Tile" ] }, - { - "type": "AirBoundaryConstructionAbridged", - "identifier": "Generic Air Boundary", - "air_mixing_per_area": 0.1, - "air_mixing_schedule": "Always On" - }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exposed Floor", + "identifier": "Generic Exterior Wall", "layers": [ - "Generic Painted Metal", - "Generic Ceiling Air Gap", + "Generic Brick", + "Generic LW Concrete", "Generic 50mm Insulation", - "Generic LW Concrete" + "Generic Wall Air Gap", + "Generic Gypsum Board" ] }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Roof", + "identifier": "Generic Interior Ceiling", "layers": [ - "Generic Roof Membrane", - "Generic 50mm Insulation", "Generic LW Concrete", "Generic Ceiling Air Gap", "Generic Acoustic Tile" ] }, + { + "type": "OpaqueConstructionAbridged", + "identifier": "Generic Exposed Floor", + "layers": [ + "Generic Painted Metal", + "Generic Ceiling Air Gap", + "Generic 50mm Insulation", + "Generic LW Concrete" + ] + }, { "type": "ShadeConstruction", "identifier": "Outdoor_Light_Shelf", @@ -141,13 +174,10 @@ "is_specular": false }, { - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Underground Roof", + "type": "WindowConstructionAbridged", + "identifier": "Generic Single Pane", "layers": [ - "Generic 50mm Insulation", - "Generic HW Concrete", - "Generic Ceiling Air Gap", - "Generic Acoustic Tile" + "Generic Clear Glass" ] }, { @@ -159,57 +189,44 @@ }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Wall", - "layers": [ - "Generic Gypsum Board", - "Generic Wall Air Gap", - "Generic Gypsum Board" - ] - }, - { - "type": "WindowConstructionAbridged", - "identifier": "Generic Single Pane", - "layers": [ - "Generic Clear Glass" - ] - }, - { - "type": "ShadeConstruction", - "identifier": "Indoor_Light_Shelf", - "solar_reflectance": 0.7, - "visible_reflectance": 0.7, - "is_specular": false - }, - { - "type": "ShadeConstruction", - "identifier": "Generic Shade", - "solar_reflectance": 0.35, - "visible_reflectance": 0.35, - "is_specular": false - }, - { - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Underground Wall", + "identifier": "Generic Underground Roof", "layers": [ "Generic 50mm Insulation", "Generic HW Concrete", - "Generic Wall Air Gap", - "Generic Gypsum Board" + "Generic Ceiling Air Gap", + "Generic Acoustic Tile" ] } ], "materials": [ { "type": "EnergyMaterial", - "identifier": "Generic 25mm Insulation", - "roughness": "MediumRough", - "thickness": 0.05, - "conductivity": 0.03, - "density": 43.0, - "specific_heat": 1210.0, + "identifier": "Generic Acoustic Tile", + "roughness": "MediumSmooth", + "thickness": 0.02, + "conductivity": 0.06, + "density": 368.0, + "specific_heat": 590.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 + "solar_absorptance": 0.2, + "visible_absorptance": 0.2 + }, + { + "type": "EnergyWindowMaterialGlazing", + "identifier": "Generic Low-e Glass", + "thickness": 0.006, + "solar_transmittance": 0.45, + "solar_reflectance": 0.36, + "solar_reflectance_back": 0.36, + "visible_transmittance": 0.71, + "visible_reflectance": 0.21, + "visible_reflectance_back": 0.21, + "infrared_transmittance": 0.0, + "emissivity": 0.84, + "emissivity_back": 0.047, + "conductivity": 1.0, + "dirt_correction": 1.0, + "solar_diffusing": false }, { "type": "EnergyMaterial", @@ -225,27 +242,27 @@ }, { "type": "EnergyMaterial", - "identifier": "Generic Painted Metal", + "identifier": "Generic Wall Air Gap", "roughness": "Smooth", - "thickness": 0.0015, - "conductivity": 45.0, - "density": 7690.0, - "specific_heat": 410.0, + "thickness": 0.1, + "conductivity": 0.667, + "density": 1.28, + "specific_heat": 1000.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.5, - "visible_absorptance": 0.5 + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 }, { "type": "EnergyMaterial", - "identifier": "Generic 25mm Wood", - "roughness": "MediumSmooth", - "thickness": 0.0254, - "conductivity": 0.15, - "density": 608.0, - "specific_heat": 1630.0, + "identifier": "Generic 25mm Insulation", + "roughness": "MediumRough", + "thickness": 0.05, + "conductivity": 0.03, + "density": 43.0, + "specific_heat": 1210.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.5, - "visible_absorptance": 0.5 + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 }, { "type": "EnergyMaterial", @@ -259,52 +276,41 @@ "solar_absorptance": 0.7, "visible_absorptance": 0.7 }, - { - "type": "EnergyWindowMaterialGas", - "identifier": "Generic Window Air Gap", - "thickness": 0.0127, - "gas_type": "Air" - }, { "type": "EnergyMaterial", - "identifier": "Generic Wall Air Gap", - "roughness": "Smooth", - "thickness": 0.1, - "conductivity": 0.667, - "density": 1.28, - "specific_heat": 1000.0, + "identifier": "Generic HW Concrete", + "roughness": "MediumRough", + "thickness": 0.2, + "conductivity": 1.95, + "density": 2240.0, + "specific_heat": 900.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 + "solar_absorptance": 0.8, + "visible_absorptance": 0.8 }, { - "type": "EnergyWindowMaterialGlazing", - "identifier": "Generic Clear Glass", - "thickness": 0.006, - "solar_transmittance": 0.77, - "solar_reflectance": 0.07, - "solar_reflectance_back": 0.07, - "visible_transmittance": 0.88, - "visible_reflectance": 0.08, - "visible_reflectance_back": 0.08, - "infrared_transmittance": 0.0, - "emissivity": 0.84, - "emissivity_back": 0.84, - "conductivity": 1.0, - "dirt_correction": 1.0, - "solar_diffusing": false + "type": "EnergyMaterial", + "identifier": "Generic Gypsum Board", + "roughness": "MediumSmooth", + "thickness": 0.0127, + "conductivity": 0.16, + "density": 800.0, + "specific_heat": 1090.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.5, + "visible_absorptance": 0.5 }, { "type": "EnergyMaterial", - "identifier": "Generic Brick", + "identifier": "Generic 50mm Insulation", "roughness": "MediumRough", - "thickness": 0.1, - "conductivity": 0.9, - "density": 1920.0, - "specific_heat": 790.0, + "thickness": 0.05, + "conductivity": 0.03, + "density": 43.0, + "specific_heat": 1210.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.65, - "visible_absorptance": 0.65 + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 }, { "type": "EnergyMaterial", @@ -320,68 +326,62 @@ }, { "type": "EnergyMaterial", - "identifier": "Generic Gypsum Board", + "identifier": "Generic 25mm Wood", "roughness": "MediumSmooth", - "thickness": 0.0127, - "conductivity": 0.16, - "density": 800.0, - "specific_heat": 1090.0, + "thickness": 0.0254, + "conductivity": 0.15, + "density": 608.0, + "specific_heat": 1630.0, "thermal_absorptance": 0.9, "solar_absorptance": 0.5, "visible_absorptance": 0.5 }, { "type": "EnergyMaterial", - "identifier": "Generic HW Concrete", - "roughness": "MediumRough", - "thickness": 0.2, - "conductivity": 1.95, - "density": 2240.0, - "specific_heat": 900.0, + "identifier": "Generic Painted Metal", + "roughness": "Smooth", + "thickness": 0.0015, + "conductivity": 45.0, + "density": 7690.0, + "specific_heat": 410.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.8, - "visible_absorptance": 0.8 - }, - { - "type": "EnergyWindowMaterialGlazing", - "identifier": "Generic Low-e Glass", - "thickness": 0.006, - "solar_transmittance": 0.45, - "solar_reflectance": 0.36, - "solar_reflectance_back": 0.36, - "visible_transmittance": 0.71, - "visible_reflectance": 0.21, - "visible_reflectance_back": 0.21, - "infrared_transmittance": 0.0, - "emissivity": 0.84, - "emissivity_back": 0.047, - "conductivity": 1.0, - "dirt_correction": 1.0, - "solar_diffusing": false + "solar_absorptance": 0.5, + "visible_absorptance": 0.5 }, { - "type": "EnergyMaterial", - "identifier": "Generic Acoustic Tile", - "roughness": "MediumSmooth", - "thickness": 0.02, - "conductivity": 0.06, - "density": 368.0, - "specific_heat": 590.0, - "thermal_absorptance": 0.9, - "solar_absorptance": 0.2, - "visible_absorptance": 0.2 + "type": "EnergyWindowMaterialGas", + "identifier": "Generic Window Air Gap", + "thickness": 0.0127, + "gas_type": "Air" }, { "type": "EnergyMaterial", - "identifier": "Generic 50mm Insulation", + "identifier": "Generic Brick", "roughness": "MediumRough", - "thickness": 0.05, - "conductivity": 0.03, - "density": 43.0, - "specific_heat": 1210.0, + "thickness": 0.1, + "conductivity": 0.9, + "density": 1920.0, + "specific_heat": 790.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 + "solar_absorptance": 0.65, + "visible_absorptance": 0.65 + }, + { + "type": "EnergyWindowMaterialGlazing", + "identifier": "Generic Clear Glass", + "thickness": 0.006, + "solar_transmittance": 0.77, + "solar_reflectance": 0.07, + "solar_reflectance_back": 0.07, + "visible_transmittance": 0.88, + "visible_reflectance": 0.08, + "visible_reflectance_back": 0.08, + "infrared_transmittance": 0.0, + "emissivity": 0.84, + "emissivity_back": 0.84, + "conductivity": 1.0, + "dirt_correction": 1.0, + "solar_diffusing": false } ], "hvacs": [ @@ -458,27 +458,37 @@ "schedules": [ { "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Heating", + "identifier": "Generic Office Equipment", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", "values": [ - 15.6 + 0.2307553806, + 0.288107175, + 0.2307553806 ], "times": [ [ 0, 0 + ], + [ + 6, + 0 + ], + [ + 18, + 0 ] ], "interpolate": false }, { "type": "ScheduleDay", - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", "values": [ - 15.6 + 1.0 ], "times": [ [ @@ -490,47 +500,28 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", "values": [ - 15.6, - 17.6, - 19.6, - 21.0, - 15.6 + 0.0 ], "times": [ [ 0, 0 - ], - [ - 5, - 0 - ], - [ - 6, - 0 - ], - [ - 7, - 0 - ], - [ - 22, - 0 ] ], "interpolate": false }, { "type": "ScheduleDay", - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", "values": [ - 15.6, - 17.8, - 20.0, - 21.0, - 15.6 + 0.2307553806, + 0.381234796, + 0.476543495, + 0.3335804465, + 0.285926097, + 0.2307553806 ], "times": [ [ @@ -538,19 +529,23 @@ 0 ], [ - 5, + 6, 0 ], [ - 6, + 8, 0 ], [ - 7, + 12, 0 ], [ - 22, + 17, + 0 + ], + [ + 19, 0 ] ], @@ -558,13 +553,15 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", "values": [ - 15.6, - 17.8, - 20.0, - 21.0, - 15.6 + 0.3076738408, + 0.381234796, + 0.857778291, + 0.762469592, + 0.857778291, + 0.476543495, + 0.381234796 ], "times": [ [ @@ -572,30 +569,38 @@ 0 ], [ - 5, + 6, 0 ], [ - 6, + 8, 0 ], [ - 7, + 12, + 0 + ], + [ + 13, 0 ], [ 17, 0 + ], + [ + 18, + 0 ] ], "interpolate": false } ], - "default_day_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "default_day_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", "schedule_rules": [ { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", + "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", "apply_sunday": false, "apply_monday": true, "apply_tuesday": true, @@ -614,7 +619,7 @@ }, { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", + "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", "apply_sunday": false, "apply_monday": false, "apply_tuesday": false, @@ -632,77 +637,84 @@ ] } ], - "holiday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", - "summer_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", - "winter_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", - "schedule_type_limit": "Temperature" + "holiday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "summer_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", + "winter_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", + "schedule_type_limit": "Fractional" }, { "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Lighting", + "identifier": "Generic Office Infiltration", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", + "identifier": "OfficeMedium INFIL_SCH_PNNL_Default", "values": [ - 0.05, - 0.04311628, - 0.05 + 1.0 ], "times": [ [ 0, 0 - ], - [ - 6, - 0 - ], - [ - 18, - 0 ] ], "interpolate": false }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", + "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", "values": [ + 1.0, + 0.25, 1.0 ], "times": [ [ 0, 0 + ], + [ + 6, + 0 + ], + [ + 22, + 0 ] ], "interpolate": false }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", + "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", "values": [ - 0.0 + 1.0, + 0.25, + 1.0 ], "times": [ [ 0, 0 + ], + [ + 6, + 0 + ], + [ + 18, + 0 ] ], "interpolate": false }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", + "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy", "values": [ - 0.05, - 0.08623256, - 0.25869768, - 0.12934884, - 0.04311628, - 0.05 + 1.0, + 0.25, + 1.0 ], "times": [ [ @@ -714,19 +726,7 @@ 0 ], [ - 8, - 0 - ], - [ - 12, - 0 - ], - [ - 17, - 0 - ], - [ - 19, + 22, 0 ] ], @@ -734,18 +734,11 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", + "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat", "values": [ - 0.05, - 0.1, - 0.08623256, - 0.25869768, - 0.77609304, - 0.4311628, - 0.25869768, - 0.17246512, - 0.08623256, - 0.04311628 + 1.0, + 0.25, + 1.0 ], "times": [ [ @@ -753,50 +746,22 @@ 0 ], [ - 5, - 0 - ], - [ - 6, - 0 - ], - [ - 7, - 0 - ], - [ - 8, - 0 - ], - [ - 17, - 0 - ], - [ - 18, - 0 - ], - [ - 20, - 0 - ], - [ - 22, + 6, 0 ], [ - 23, + 18, 0 ] ], "interpolate": false } ], - "default_day_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", + "default_day_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", "schedule_rules": [ { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", + "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Wkdy", "apply_sunday": false, "apply_monday": true, "apply_tuesday": true, @@ -815,7 +780,7 @@ }, { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", + "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Sat", "apply_sunday": false, "apply_monday": false, "apply_tuesday": false, @@ -833,34 +798,20 @@ ] } ], - "holiday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", - "summer_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", - "winter_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", + "holiday_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", + "summer_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", + "winter_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", "schedule_type_limit": "Fractional" }, { "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Activity", + "identifier": "Generic Office Cooling", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "OfficeMedium ACTIVITY_SCH_Default", - "values": [ - 120.0 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium ACTIVITY_SCH_Default_SmrDsn", + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", "values": [ - 120.0 + 26.7 ], "times": [ [ @@ -872,58 +823,29 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium ACTIVITY_SCH_Default_WntrDsn", + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", "values": [ - 120.0 + 26.7, + 25.7, + 25.0, + 24.0, + 26.7 ], "times": [ [ 0, 0 - ] - ], - "interpolate": false - } - ], - "default_day_schedule": "OfficeMedium ACTIVITY_SCH_Default", - "holiday_schedule": "OfficeMedium ACTIVITY_SCH_Default", - "summer_designday_schedule": "OfficeMedium ACTIVITY_SCH_Default_SmrDsn", - "winter_designday_schedule": "OfficeMedium ACTIVITY_SCH_Default_WntrDsn", - "schedule_type_limit": "Activity Level" - }, - { - "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Infiltration", - "day_schedules": [ - { - "type": "ScheduleDay", - "identifier": "OfficeMedium INFIL_SCH_PNNL_Default", - "values": [ - 1.0 - ], - "times": [ + ], [ - 0, + 5, 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", - "values": [ - 1.0, - 0.25, - 1.0 - ], - "times": [ + ], [ - 0, + 6, 0 ], [ - 6, + 7, 0 ], [ @@ -935,45 +857,45 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", "values": [ - 1.0, - 0.25, - 1.0 + 26.7 ], "times": [ [ 0, 0 - ], - [ - 6, - 0 - ], - [ - 18, - 0 ] ], "interpolate": false }, { "type": "ScheduleDay", - "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy", + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", "values": [ - 1.0, - 0.25, - 1.0 + 26.7, + 25.6, + 25.0, + 24.0, + 26.7 ], "times": [ [ 0, 0 ], + [ + 5, + 0 + ], [ 6, 0 ], + [ + 7, + 0 + ], [ 22, 0 @@ -983,34 +905,44 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat", + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", "values": [ - 1.0, - 0.25, - 1.0 + 26.7, + 25.7, + 25.0, + 24.0, + 26.7 ], "times": [ [ 0, 0 ], + [ + 5, + 0 + ], [ 6, 0 ], [ - 18, + 7, + 0 + ], + [ + 17, 0 ] ], "interpolate": false } ], - "default_day_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", + "default_day_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", "schedule_rules": [ { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Wkdy", + "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", "apply_sunday": false, "apply_monday": true, "apply_tuesday": true, @@ -1029,7 +961,7 @@ }, { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Sat", + "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", "apply_sunday": false, "apply_monday": false, "apply_tuesday": false, @@ -1047,22 +979,75 @@ ] } ], - "holiday_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", - "summer_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", - "winter_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", - "schedule_type_limit": "Fractional" + "holiday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", + "summer_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", + "winter_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", + "schedule_type_limit": "Temperature" }, { "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Equipment", + "identifier": "Generic Office Activity", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", + "identifier": "OfficeMedium ACTIVITY_SCH_Default", "values": [ - 0.2307553806, - 0.288107175, - 0.2307553806 + 120.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium ACTIVITY_SCH_Default_SmrDsn", + "values": [ + 120.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium ACTIVITY_SCH_Default_WntrDsn", + "values": [ + 120.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + } + ], + "default_day_schedule": "OfficeMedium ACTIVITY_SCH_Default", + "holiday_schedule": "OfficeMedium ACTIVITY_SCH_Default", + "summer_designday_schedule": "OfficeMedium ACTIVITY_SCH_Default_SmrDsn", + "winter_designday_schedule": "OfficeMedium ACTIVITY_SCH_Default_WntrDsn", + "schedule_type_limit": "Activity Level" + }, + { + "type": "ScheduleRulesetAbridged", + "identifier": "Generic Office Lighting", + "day_schedules": [ + { + "type": "ScheduleDay", + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", + "values": [ + 0.05, + 0.04311628, + 0.05 ], "times": [ [ @@ -1082,7 +1067,7 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", "values": [ 1.0 ], @@ -1096,7 +1081,7 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", "values": [ 0.0 ], @@ -1110,14 +1095,14 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", "values": [ - 0.2307553806, - 0.381234796, - 0.476543495, - 0.3335804465, - 0.285926097, - 0.2307553806 + 0.05, + 0.08623256, + 0.25869768, + 0.12934884, + 0.04311628, + 0.05 ], "times": [ [ @@ -1149,54 +1134,69 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", "values": [ - 0.3076738408, - 0.381234796, - 0.857778291, - 0.762469592, - 0.857778291, - 0.476543495, - 0.381234796 + 0.05, + 0.1, + 0.08623256, + 0.25869768, + 0.77609304, + 0.4311628, + 0.25869768, + 0.17246512, + 0.08623256, + 0.04311628 ], "times": [ [ - 0, + 0, + 0 + ], + [ + 5, 0 ], [ 6, 0 ], + [ + 7, + 0 + ], [ 8, 0 ], [ - 12, + 17, 0 ], [ - 13, + 18, 0 ], [ - 17, + 20, 0 ], [ - 18, + 22, + 0 + ], + [ + 23, 0 ] ], "interpolate": false } ], - "default_day_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", + "default_day_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", "schedule_rules": [ { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", + "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", "apply_sunday": false, "apply_monday": true, "apply_tuesday": true, @@ -1215,7 +1215,7 @@ }, { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", "apply_sunday": false, "apply_monday": false, "apply_tuesday": false, @@ -1233,20 +1233,42 @@ ] } ], - "holiday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", - "summer_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", - "winter_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", + "holiday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", + "summer_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", + "winter_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", "schedule_type_limit": "Fractional" }, { "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Cooling", + "identifier": "Always On", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", + "identifier": "Always On_Day Schedule", "values": [ - 26.7 + 1.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + } + ], + "default_day_schedule": "Always On_Day Schedule", + "schedule_type_limit": "Fractional" + }, + { + "type": "ScheduleRulesetAbridged", + "identifier": "Generic Office Heating", + "day_schedules": [ + { + "type": "ScheduleDay", + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "values": [ + 15.6 ], "times": [ [ @@ -1258,13 +1280,27 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", "values": [ - 26.7, - 25.7, - 25.0, - 24.0, - 26.7 + 15.6 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", + "values": [ + 15.6, + 17.6, + 19.6, + 21.0, + 15.6 ], "times": [ [ @@ -1292,27 +1328,13 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", - "values": [ - 26.7 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", "values": [ - 26.7, - 25.6, - 25.0, - 24.0, - 26.7 + 15.6, + 17.8, + 20.0, + 21.0, + 15.6 ], "times": [ [ @@ -1340,13 +1362,13 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", "values": [ - 26.7, - 25.7, - 25.0, - 24.0, - 26.7 + 15.6, + 17.8, + 20.0, + 21.0, + 15.6 ], "times": [ [ @@ -1373,11 +1395,11 @@ "interpolate": false } ], - "default_day_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", + "default_day_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", "schedule_rules": [ { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", + "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", "apply_sunday": false, "apply_monday": true, "apply_tuesday": true, @@ -1396,7 +1418,7 @@ }, { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", + "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", "apply_sunday": false, "apply_monday": false, "apply_tuesday": false, @@ -1414,33 +1436,11 @@ ] } ], - "holiday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", - "summer_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", - "winter_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", + "holiday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "summer_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", + "winter_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", "schedule_type_limit": "Temperature" }, - { - "type": "ScheduleRulesetAbridged", - "identifier": "Always On", - "day_schedules": [ - { - "type": "ScheduleDay", - "identifier": "Always On_Day Schedule", - "values": [ - 1.0 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - } - ], - "default_day_schedule": "Always On_Day Schedule", - "schedule_type_limit": "Fractional" - }, { "type": "ScheduleRulesetAbridged", "identifier": "Generic Office Occupancy", @@ -1659,23 +1659,23 @@ }, { "type": "ScheduleTypeLimit", - "identifier": "Activity Level", - "lower_limit": 0.0, + "identifier": "Temperature", + "lower_limit": -273.15, "upper_limit": { "type": "NoLimit" }, "numeric_type": "Continuous", - "unit_type": "ActivityLevel" + "unit_type": "Temperature" }, { "type": "ScheduleTypeLimit", - "identifier": "Temperature", - "lower_limit": -273.15, + "identifier": "Activity Level", + "lower_limit": 0.0, "upper_limit": { "type": "NoLimit" }, "numeric_type": "Continuous", - "unit_type": "Temperature" + "unit_type": "ActivityLevel" } ] }, @@ -1686,39 +1686,39 @@ "type": "ModifierSetAbridged", "identifier": "Generic_Interior_Visible_Modifier_Set", "wall_set": { - "exterior_modifier": "generic_wall_0.50", "interior_modifier": "generic_wall_0.50", - "type": "WallConstructionSetAbridged" + "exterior_modifier": "generic_wall_0.50", + "type": "WallModifierSetAbridged" }, "floor_set": { - "exterior_modifier": "generic_floor_0.20", "interior_modifier": "generic_floor_0.20", - "type": "FloorConstructionSetAbridged" + "exterior_modifier": "generic_floor_0.20", + "type": "FloorModifierSetAbridged" }, "roof_ceiling_set": { - "exterior_modifier": "generic_ceiling_0.80", "interior_modifier": "generic_ceiling_0.80", - "type": "RoofCeilingConstructionSetAbridged" + "exterior_modifier": "generic_ceiling_0.80", + "type": "RoofCeilingModifierSetAbridged" }, "aperture_set": { + "interior_modifier": "generic_interior_window_vis_0.88", "skylight_modifier": "generic_exterior_window_vis_0.64", "operable_modifier": "generic_exterior_window_vis_0.64", - "interior_modifier": "generic_interior_window_vis_0.88", - "type": "ApertureConstructionSetAbridged", + "type": "ApertureModifierSetAbridged", "window_modifier": "generic_exterior_window_vis_0.64" }, "door_set": { "exterior_modifier": "generic_opaque_door_0.50", + "overhead_modifier": "generic_opaque_door_0.50", + "interior_modifier": "generic_opaque_door_0.50", "exterior_glass_modifier": "generic_exterior_window_vis_0.64", "interior_glass_modifier": "generic_interior_window_vis_0.88", - "interior_modifier": "generic_opaque_door_0.50", - "overhead_modifier": "generic_opaque_door_0.50", - "type": "DoorConstructionSetAbridged" + "type": "DoorModifierSetAbridged" }, "shade_set": { - "exterior_modifier": "generic_exterior_shade_0.35", "interior_modifier": "generic_interior_shade_0.50", - "type": "ShadeSetAbridged" + "exterior_modifier": "generic_exterior_shade_0.35", + "type": "ShadeModifierSetAbridged" }, "air_boundary_modifier": "air_boundary" } @@ -1726,18 +1726,34 @@ "global_modifier_set": "Generic_Interior_Visible_Modifier_Set", "modifiers": [ { - "modifier": "void", + "modifier": { + "type": "void" + }, + "type": "glass", + "identifier": "generic_interior_window_vis_0.88", + "r_transmissivity": 0.9584154328610596, + "g_transmissivity": 0.9584154328610596, + "b_transmissivity": 0.9584154328610596, + "refraction_index": null, + "dependencies": [] + }, + { + "modifier": { + "type": "void" + }, "type": "plastic", - "identifier": "generic_wall_0.50", - "r_reflectance": 0.5, - "g_reflectance": 0.5, - "b_reflectance": 0.5, + "identifier": "generic_exterior_shade_0.35", + "r_reflectance": 0.35, + "g_reflectance": 0.35, + "b_reflectance": 0.35, "specularity": 0.0, "roughness": 0.0, "dependencies": [] }, { - "modifier": "void", + "modifier": { + "type": "void" + }, "type": "plastic", "identifier": "generic_floor_0.20", "r_reflectance": 0.2, @@ -1748,28 +1764,9 @@ "dependencies": [] }, { - "modifier": "void", - "type": "glass", - "identifier": "generic_exterior_window_vis_0.64", - "r_transmissivity": 0.6975761815384331, - "g_transmissivity": 0.6975761815384331, - "b_transmissivity": 0.6975761815384331, - "refraction_index": null, - "dependencies": [] - }, - { - "modifier": "void", - "type": "plastic", - "identifier": "generic_opaque_door_0.50", - "r_reflectance": 0.5, - "g_reflectance": 0.5, - "b_reflectance": 0.5, - "specularity": 0.0, - "roughness": 0.0, - "dependencies": [] - }, - { - "modifier": "void", + "modifier": { + "type": "void" + }, "type": "plastic", "identifier": "generic_ceiling_0.80", "r_reflectance": 0.8, @@ -1780,9 +1777,11 @@ "dependencies": [] }, { - "modifier": "void", + "modifier": { + "type": "void" + }, "type": "plastic", - "identifier": "generic_interior_shade_0.50", + "identifier": "generic_opaque_door_0.50", "r_reflectance": 0.5, "g_reflectance": 0.5, "b_reflectance": 0.5, @@ -1791,18 +1790,22 @@ "dependencies": [] }, { - "modifier": "void", + "modifier": { + "type": "void" + }, "type": "plastic", - "identifier": "generic_exterior_shade_0.35", - "r_reflectance": 0.35, - "g_reflectance": 0.35, - "b_reflectance": 0.35, + "identifier": "generic_wall_0.50", + "r_reflectance": 0.5, + "g_reflectance": 0.5, + "b_reflectance": 0.5, "specularity": 0.0, "roughness": 0.0, "dependencies": [] }, { - "modifier": "void", + "modifier": { + "type": "void" + }, "type": "glass", "identifier": "air_boundary", "r_transmissivity": 1.0, @@ -1812,12 +1815,27 @@ "dependencies": [] }, { - "modifier": "void", + "modifier": { + "type": "void" + }, + "type": "plastic", + "identifier": "generic_interior_shade_0.50", + "r_reflectance": 0.5, + "g_reflectance": 0.5, + "b_reflectance": 0.5, + "specularity": 0.0, + "roughness": 0.0, + "dependencies": [] + }, + { + "modifier": { + "type": "void" + }, "type": "glass", - "identifier": "generic_interior_window_vis_0.88", - "r_transmissivity": 0.9584154328610596, - "g_transmissivity": 0.9584154328610596, - "b_transmissivity": 0.9584154328610596, + "identifier": "generic_exterior_window_vis_0.64", + "r_transmissivity": 0.6975761815384331, + "g_transmissivity": 0.6975761815384331, + "b_transmissivity": 0.6975761815384331, "refraction_index": null, "dependencies": [] } diff --git a/samples/model/model_energy_detailed_loads.json b/samples/model/model_energy_detailed_loads.json index c0a5ba3..b148d5c 100644 --- a/samples/model/model_energy_detailed_loads.json +++ b/samples/model/model_energy_detailed_loads.json @@ -51,22 +51,39 @@ ], "global_construction_set": "Default Generic Construction Set", "constructions": [ + { + "type": "ShadeConstruction", + "identifier": "Generic Shade", + "solar_reflectance": 0.35, + "visible_reflectance": 0.35, + "is_specular": false + }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exterior Door", + "identifier": "Generic Interior Wall", "layers": [ - "Generic Painted Metal", - "Generic 25mm Insulation", - "Generic Painted Metal" + "Generic Gypsum Board", + "Generic Wall Air Gap", + "Generic Gypsum Board" ] }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Floor", + "identifier": "Generic Underground Wall", "layers": [ - "Generic Acoustic Tile", - "Generic Ceiling Air Gap", - "Generic LW Concrete" + "Generic 50mm Insulation", + "Generic HW Concrete", + "Generic Wall Air Gap", + "Generic Gypsum Board" + ] + }, + { + "type": "OpaqueConstructionAbridged", + "identifier": "Generic Exterior Door", + "layers": [ + "Generic Painted Metal", + "Generic 25mm Insulation", + "Generic Painted Metal" ] }, { @@ -80,13 +97,11 @@ }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exterior Wall", + "identifier": "Generic Interior Floor", "layers": [ - "Generic Brick", - "Generic LW Concrete", - "Generic 50mm Insulation", - "Generic Wall Air Gap", - "Generic Gypsum Board" + "Generic Acoustic Tile", + "Generic Ceiling Air Gap", + "Generic LW Concrete" ] }, { @@ -97,22 +112,6 @@ "Generic HW Concrete" ] }, - { - "type": "AirBoundaryConstructionAbridged", - "identifier": "Generic Air Boundary", - "air_mixing_per_area": 0.1, - "air_mixing_schedule": "Always On" - }, - { - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exposed Floor", - "layers": [ - "Generic Painted Metal", - "Generic Ceiling Air Gap", - "Generic 50mm Insulation", - "Generic LW Concrete" - ] - }, { "type": "OpaqueConstructionAbridged", "identifier": "Generic Roof", @@ -126,30 +125,40 @@ }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Underground Roof", + "identifier": "Generic Exterior Wall", "layers": [ + "Generic Brick", + "Generic LW Concrete", "Generic 50mm Insulation", - "Generic HW Concrete", - "Generic Ceiling Air Gap", - "Generic Acoustic Tile" + "Generic Wall Air Gap", + "Generic Gypsum Board" ] }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Door", + "identifier": "Generic Interior Ceiling", "layers": [ - "Generic 25mm Wood" + "Generic LW Concrete", + "Generic Ceiling Air Gap", + "Generic Acoustic Tile" ] }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Wall", + "identifier": "Generic Exposed Floor", "layers": [ - "Generic Gypsum Board", - "Generic Wall Air Gap", - "Generic Gypsum Board" + "Generic Painted Metal", + "Generic Ceiling Air Gap", + "Generic 50mm Insulation", + "Generic LW Concrete" ] }, + { + "type": "AirBoundaryConstructionAbridged", + "identifier": "Generic Air Boundary", + "air_mixing_per_area": 0.1, + "air_mixing_schedule": "Always On" + }, { "type": "WindowConstructionAbridged", "identifier": "Generic Single Pane", @@ -159,43 +168,51 @@ }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Ceiling", + "identifier": "Generic Interior Door", "layers": [ - "Generic LW Concrete", - "Generic Ceiling Air Gap", - "Generic Acoustic Tile" + "Generic 25mm Wood" ] }, - { - "type": "ShadeConstruction", - "identifier": "Generic Shade", - "solar_reflectance": 0.35, - "visible_reflectance": 0.35, - "is_specular": false - }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Underground Wall", + "identifier": "Generic Underground Roof", "layers": [ "Generic 50mm Insulation", "Generic HW Concrete", - "Generic Wall Air Gap", - "Generic Gypsum Board" + "Generic Ceiling Air Gap", + "Generic Acoustic Tile" ] } ], "materials": [ { "type": "EnergyMaterial", - "identifier": "Generic 25mm Insulation", - "roughness": "MediumRough", - "thickness": 0.05, - "conductivity": 0.03, - "density": 43.0, - "specific_heat": 1210.0, + "identifier": "Generic Acoustic Tile", + "roughness": "MediumSmooth", + "thickness": 0.02, + "conductivity": 0.06, + "density": 368.0, + "specific_heat": 590.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 + "solar_absorptance": 0.2, + "visible_absorptance": 0.2 + }, + { + "type": "EnergyWindowMaterialGlazing", + "identifier": "Generic Low-e Glass", + "thickness": 0.006, + "solar_transmittance": 0.45, + "solar_reflectance": 0.36, + "solar_reflectance_back": 0.36, + "visible_transmittance": 0.71, + "visible_reflectance": 0.21, + "visible_reflectance_back": 0.21, + "infrared_transmittance": 0.0, + "emissivity": 0.84, + "emissivity_back": 0.047, + "conductivity": 1.0, + "dirt_correction": 1.0, + "solar_diffusing": false }, { "type": "EnergyMaterial", @@ -211,27 +228,27 @@ }, { "type": "EnergyMaterial", - "identifier": "Generic Painted Metal", + "identifier": "Generic Wall Air Gap", "roughness": "Smooth", - "thickness": 0.0015, - "conductivity": 45.0, - "density": 7690.0, - "specific_heat": 410.0, + "thickness": 0.1, + "conductivity": 0.667, + "density": 1.28, + "specific_heat": 1000.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.5, - "visible_absorptance": 0.5 + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 }, { "type": "EnergyMaterial", - "identifier": "Generic 25mm Wood", - "roughness": "MediumSmooth", - "thickness": 0.0254, - "conductivity": 0.15, - "density": 608.0, - "specific_heat": 1630.0, + "identifier": "Generic 25mm Insulation", + "roughness": "MediumRough", + "thickness": 0.05, + "conductivity": 0.03, + "density": 43.0, + "specific_heat": 1210.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.5, - "visible_absorptance": 0.5 + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 }, { "type": "EnergyMaterial", @@ -245,52 +262,41 @@ "solar_absorptance": 0.7, "visible_absorptance": 0.7 }, - { - "type": "EnergyWindowMaterialGas", - "identifier": "Generic Window Air Gap", - "thickness": 0.0127, - "gas_type": "Air" - }, { "type": "EnergyMaterial", - "identifier": "Generic Wall Air Gap", - "roughness": "Smooth", - "thickness": 0.1, - "conductivity": 0.667, - "density": 1.28, - "specific_heat": 1000.0, + "identifier": "Generic HW Concrete", + "roughness": "MediumRough", + "thickness": 0.2, + "conductivity": 1.95, + "density": 2240.0, + "specific_heat": 900.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 + "solar_absorptance": 0.8, + "visible_absorptance": 0.8 }, { - "type": "EnergyWindowMaterialGlazing", - "identifier": "Generic Clear Glass", - "thickness": 0.006, - "solar_transmittance": 0.77, - "solar_reflectance": 0.07, - "solar_reflectance_back": 0.07, - "visible_transmittance": 0.88, - "visible_reflectance": 0.08, - "visible_reflectance_back": 0.08, - "infrared_transmittance": 0.0, - "emissivity": 0.84, - "emissivity_back": 0.84, - "conductivity": 1.0, - "dirt_correction": 1.0, - "solar_diffusing": false + "type": "EnergyMaterial", + "identifier": "Generic Gypsum Board", + "roughness": "MediumSmooth", + "thickness": 0.0127, + "conductivity": 0.16, + "density": 800.0, + "specific_heat": 1090.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.5, + "visible_absorptance": 0.5 }, { "type": "EnergyMaterial", - "identifier": "Generic Brick", + "identifier": "Generic 50mm Insulation", "roughness": "MediumRough", - "thickness": 0.1, - "conductivity": 0.9, - "density": 1920.0, - "specific_heat": 790.0, + "thickness": 0.05, + "conductivity": 0.03, + "density": 43.0, + "specific_heat": 1210.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.65, - "visible_absorptance": 0.65 + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 }, { "type": "EnergyMaterial", @@ -306,68 +312,62 @@ }, { "type": "EnergyMaterial", - "identifier": "Generic Gypsum Board", + "identifier": "Generic 25mm Wood", "roughness": "MediumSmooth", - "thickness": 0.0127, - "conductivity": 0.16, - "density": 800.0, - "specific_heat": 1090.0, + "thickness": 0.0254, + "conductivity": 0.15, + "density": 608.0, + "specific_heat": 1630.0, "thermal_absorptance": 0.9, "solar_absorptance": 0.5, "visible_absorptance": 0.5 }, { "type": "EnergyMaterial", - "identifier": "Generic HW Concrete", + "identifier": "Generic Painted Metal", + "roughness": "Smooth", + "thickness": 0.0015, + "conductivity": 45.0, + "density": 7690.0, + "specific_heat": 410.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.5, + "visible_absorptance": 0.5 + }, + { + "type": "EnergyWindowMaterialGas", + "identifier": "Generic Window Air Gap", + "thickness": 0.0127, + "gas_type": "Air" + }, + { + "type": "EnergyMaterial", + "identifier": "Generic Brick", "roughness": "MediumRough", - "thickness": 0.2, - "conductivity": 1.95, - "density": 2240.0, - "specific_heat": 900.0, + "thickness": 0.1, + "conductivity": 0.9, + "density": 1920.0, + "specific_heat": 790.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.8, - "visible_absorptance": 0.8 + "solar_absorptance": 0.65, + "visible_absorptance": 0.65 }, { "type": "EnergyWindowMaterialGlazing", - "identifier": "Generic Low-e Glass", + "identifier": "Generic Clear Glass", "thickness": 0.006, - "solar_transmittance": 0.45, - "solar_reflectance": 0.36, - "solar_reflectance_back": 0.36, - "visible_transmittance": 0.71, - "visible_reflectance": 0.21, - "visible_reflectance_back": 0.21, + "solar_transmittance": 0.77, + "solar_reflectance": 0.07, + "solar_reflectance_back": 0.07, + "visible_transmittance": 0.88, + "visible_reflectance": 0.08, + "visible_reflectance_back": 0.08, "infrared_transmittance": 0.0, "emissivity": 0.84, - "emissivity_back": 0.047, + "emissivity_back": 0.84, "conductivity": 1.0, "dirt_correction": 1.0, "solar_diffusing": false - }, - { - "type": "EnergyMaterial", - "identifier": "Generic Acoustic Tile", - "roughness": "MediumSmooth", - "thickness": 0.02, - "conductivity": 0.06, - "density": 368.0, - "specific_heat": 590.0, - "thermal_absorptance": 0.9, - "solar_absorptance": 0.2, - "visible_absorptance": 0.2 - }, - { - "type": "EnergyMaterial", - "identifier": "Generic 50mm Insulation", - "roughness": "MediumRough", - "thickness": 0.05, - "conductivity": 0.03, - "density": 43.0, - "specific_heat": 1210.0, - "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 } ], "hvacs": [ @@ -397,27 +397,37 @@ "schedules": [ { "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Heating", + "identifier": "Generic Office Equipment", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", "values": [ - 15.6 + 0.2307553806, + 0.288107175, + 0.2307553806 ], "times": [ [ 0, 0 + ], + [ + 6, + 0 + ], + [ + 18, + 0 ] ], "interpolate": false }, { "type": "ScheduleDay", - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", "values": [ - 15.6 + 1.0 ], "times": [ [ @@ -429,47 +439,28 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", "values": [ - 15.6, - 17.6, - 19.6, - 21.0, - 15.6 + 0.0 ], "times": [ [ 0, 0 - ], - [ - 5, - 0 - ], - [ - 6, - 0 - ], - [ - 7, - 0 - ], - [ - 22, - 0 ] ], "interpolate": false }, { "type": "ScheduleDay", - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", "values": [ - 15.6, - 17.8, - 20.0, - 21.0, - 15.6 + 0.2307553806, + 0.381234796, + 0.476543495, + 0.3335804465, + 0.285926097, + 0.2307553806 ], "times": [ [ @@ -477,19 +468,23 @@ 0 ], [ - 5, + 6, 0 ], [ - 6, + 8, 0 ], [ - 7, + 12, 0 ], [ - 22, + 17, + 0 + ], + [ + 19, 0 ] ], @@ -497,13 +492,15 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", "values": [ - 15.6, - 17.8, - 20.0, - 21.0, - 15.6 + 0.3076738408, + 0.381234796, + 0.857778291, + 0.762469592, + 0.857778291, + 0.476543495, + 0.381234796 ], "times": [ [ @@ -511,30 +508,38 @@ 0 ], [ - 5, + 6, 0 ], [ - 6, + 8, 0 ], [ - 7, + 12, + 0 + ], + [ + 13, 0 ], [ 17, 0 + ], + [ + 18, + 0 ] ], "interpolate": false } ], - "default_day_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "default_day_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", "schedule_rules": [ { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", + "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", "apply_sunday": false, "apply_monday": true, "apply_tuesday": true, @@ -553,7 +558,7 @@ }, { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", + "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", "apply_sunday": false, "apply_monday": false, "apply_tuesday": false, @@ -571,42 +576,18 @@ ] } ], - "holiday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", - "summer_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", - "winter_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", - "schedule_type_limit": "Temperature" + "holiday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "summer_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", + "winter_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", + "schedule_type_limit": "Fractional" }, { "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Lighting", + "identifier": "Generic Office Infiltration", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", - "values": [ - 0.05, - 0.04311628, - 0.05 - ], - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 18, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", + "identifier": "OfficeMedium INFIL_SCH_PNNL_Default", "values": [ 1.0 ], @@ -620,28 +601,11 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", - "values": [ - 0.0 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", + "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", "values": [ - 0.05, - 0.08623256, - 0.25869768, - 0.12934884, - 0.04311628, - 0.05 + 1.0, + 0.25, + 1.0 ], "times": [ [ @@ -653,19 +617,7 @@ 0 ], [ - 8, - 0 - ], - [ - 12, - 0 - ], - [ - 17, - 0 - ], - [ - 19, + 22, 0 ] ], @@ -673,69 +625,82 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", + "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", "values": [ - 0.05, - 0.1, - 0.08623256, - 0.25869768, - 0.77609304, - 0.4311628, - 0.25869768, - 0.17246512, - 0.08623256, - 0.04311628 + 1.0, + 0.25, + 1.0 ], "times": [ [ 0, 0 ], - [ - 5, - 0 - ], [ 6, 0 ], [ - 7, + 18, 0 - ], + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy", + "values": [ + 1.0, + 0.25, + 1.0 + ], + "times": [ [ - 8, + 0, 0 ], [ - 17, + 6, 0 ], [ - 18, + 22, 0 - ], + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat", + "values": [ + 1.0, + 0.25, + 1.0 + ], + "times": [ [ - 20, + 0, 0 ], [ - 22, + 6, 0 ], [ - 23, + 18, 0 ] ], "interpolate": false } ], - "default_day_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", + "default_day_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", "schedule_rules": [ { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", + "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Wkdy", "apply_sunday": false, "apply_monday": true, "apply_tuesday": true, @@ -754,7 +719,7 @@ }, { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", + "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Sat", "apply_sunday": false, "apply_monday": false, "apply_tuesday": false, @@ -772,34 +737,20 @@ ] } ], - "holiday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", - "summer_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", - "winter_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", + "holiday_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", + "summer_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", + "winter_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", "schedule_type_limit": "Fractional" }, { "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Activity", + "identifier": "Generic Office Cooling", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "OfficeMedium ACTIVITY_SCH_Default", - "values": [ - 120.0 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium ACTIVITY_SCH_Default_SmrDsn", + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", "values": [ - 120.0 + 26.7 ], "times": [ [ @@ -811,58 +762,29 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium ACTIVITY_SCH_Default_WntrDsn", + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", "values": [ - 120.0 + 26.7, + 25.7, + 25.0, + 24.0, + 26.7 ], "times": [ [ 0, 0 - ] - ], - "interpolate": false - } - ], - "default_day_schedule": "OfficeMedium ACTIVITY_SCH_Default", - "holiday_schedule": "OfficeMedium ACTIVITY_SCH_Default", - "summer_designday_schedule": "OfficeMedium ACTIVITY_SCH_Default_SmrDsn", - "winter_designday_schedule": "OfficeMedium ACTIVITY_SCH_Default_WntrDsn", - "schedule_type_limit": "Activity Level" - }, - { - "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Infiltration", - "day_schedules": [ - { - "type": "ScheduleDay", - "identifier": "OfficeMedium INFIL_SCH_PNNL_Default", - "values": [ - 1.0 - ], - "times": [ + ], [ - 0, + 5, 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", - "values": [ - 1.0, - 0.25, - 1.0 - ], - "times": [ + ], [ - 0, + 6, 0 ], [ - 6, + 7, 0 ], [ @@ -874,45 +796,45 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", "values": [ - 1.0, - 0.25, - 1.0 + 26.7 ], "times": [ [ 0, 0 - ], - [ - 6, - 0 - ], - [ - 18, - 0 ] ], "interpolate": false }, { "type": "ScheduleDay", - "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy", + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", "values": [ - 1.0, - 0.25, - 1.0 + 26.7, + 25.6, + 25.0, + 24.0, + 26.7 ], "times": [ [ 0, 0 ], + [ + 5, + 0 + ], [ 6, 0 ], + [ + 7, + 0 + ], [ 22, 0 @@ -922,34 +844,44 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat", + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", "values": [ - 1.0, - 0.25, - 1.0 + 26.7, + 25.7, + 25.0, + 24.0, + 26.7 ], "times": [ [ 0, 0 ], + [ + 5, + 0 + ], [ 6, 0 ], [ - 18, + 7, + 0 + ], + [ + 17, 0 ] ], "interpolate": false } ], - "default_day_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", + "default_day_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", "schedule_rules": [ { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Wkdy", + "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", "apply_sunday": false, "apply_monday": true, "apply_tuesday": true, @@ -967,41 +899,94 @@ ] }, { - "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Sat", - "apply_sunday": false, - "apply_monday": false, - "apply_tuesday": false, - "apply_wednesday": false, - "apply_thursday": false, - "apply_friday": false, - "apply_saturday": true, - "start_date": [ - 1, - 1 + "type": "ScheduleRuleAbridged", + "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", + "apply_sunday": false, + "apply_monday": false, + "apply_tuesday": false, + "apply_wednesday": false, + "apply_thursday": false, + "apply_friday": false, + "apply_saturday": true, + "start_date": [ + 1, + 1 + ], + "end_date": [ + 12, + 31 + ] + } + ], + "holiday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", + "summer_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", + "winter_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", + "schedule_type_limit": "Temperature" + }, + { + "type": "ScheduleRulesetAbridged", + "identifier": "Generic Office Activity", + "day_schedules": [ + { + "type": "ScheduleDay", + "identifier": "OfficeMedium ACTIVITY_SCH_Default", + "values": [ + 120.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium ACTIVITY_SCH_Default_SmrDsn", + "values": [ + 120.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium ACTIVITY_SCH_Default_WntrDsn", + "values": [ + 120.0 ], - "end_date": [ - 12, - 31 - ] + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false } ], - "holiday_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", - "summer_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", - "winter_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", - "schedule_type_limit": "Fractional" + "default_day_schedule": "OfficeMedium ACTIVITY_SCH_Default", + "holiday_schedule": "OfficeMedium ACTIVITY_SCH_Default", + "summer_designday_schedule": "OfficeMedium ACTIVITY_SCH_Default_SmrDsn", + "winter_designday_schedule": "OfficeMedium ACTIVITY_SCH_Default_WntrDsn", + "schedule_type_limit": "Activity Level" }, { "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Equipment", + "identifier": "Generic Office Lighting", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", "values": [ - 0.2307553806, - 0.288107175, - 0.2307553806 + 0.05, + 0.04311628, + 0.05 ], "times": [ [ @@ -1021,7 +1006,7 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", "values": [ 1.0 ], @@ -1035,7 +1020,7 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", "values": [ 0.0 ], @@ -1049,14 +1034,14 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", "values": [ - 0.2307553806, - 0.381234796, - 0.476543495, - 0.3335804465, - 0.285926097, - 0.2307553806 + 0.05, + 0.08623256, + 0.25869768, + 0.12934884, + 0.04311628, + 0.05 ], "times": [ [ @@ -1088,15 +1073,18 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", "values": [ - 0.3076738408, - 0.381234796, - 0.857778291, - 0.762469592, - 0.857778291, - 0.476543495, - 0.381234796 + 0.05, + 0.1, + 0.08623256, + 0.25869768, + 0.77609304, + 0.4311628, + 0.25869768, + 0.17246512, + 0.08623256, + 0.04311628 ], "times": [ [ @@ -1104,19 +1092,19 @@ 0 ], [ - 6, + 5, 0 ], [ - 8, + 6, 0 ], [ - 12, + 7, 0 ], [ - 13, + 8, 0 ], [ @@ -1126,16 +1114,28 @@ [ 18, 0 + ], + [ + 20, + 0 + ], + [ + 22, + 0 + ], + [ + 23, + 0 ] ], "interpolate": false } ], - "default_day_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", + "default_day_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", "schedule_rules": [ { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", + "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", "apply_sunday": false, "apply_monday": true, "apply_tuesday": true, @@ -1154,7 +1154,7 @@ }, { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", "apply_sunday": false, "apply_monday": false, "apply_tuesday": false, @@ -1172,20 +1172,42 @@ ] } ], - "holiday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", - "summer_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", - "winter_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", + "holiday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", + "summer_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", + "winter_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", "schedule_type_limit": "Fractional" }, { "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Cooling", + "identifier": "Always On", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", + "identifier": "Always On_Day Schedule", "values": [ - 26.7 + 1.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + } + ], + "default_day_schedule": "Always On_Day Schedule", + "schedule_type_limit": "Fractional" + }, + { + "type": "ScheduleRulesetAbridged", + "identifier": "Generic Office Heating", + "day_schedules": [ + { + "type": "ScheduleDay", + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "values": [ + 15.6 ], "times": [ [ @@ -1197,13 +1219,27 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", "values": [ - 26.7, - 25.7, - 25.0, - 24.0, - 26.7 + 15.6 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", + "values": [ + 15.6, + 17.6, + 19.6, + 21.0, + 15.6 ], "times": [ [ @@ -1231,27 +1267,13 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", - "values": [ - 26.7 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", "values": [ - 26.7, - 25.6, - 25.0, - 24.0, - 26.7 + 15.6, + 17.8, + 20.0, + 21.0, + 15.6 ], "times": [ [ @@ -1279,13 +1301,13 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", "values": [ - 26.7, - 25.7, - 25.0, - 24.0, - 26.7 + 15.6, + 17.8, + 20.0, + 21.0, + 15.6 ], "times": [ [ @@ -1312,11 +1334,11 @@ "interpolate": false } ], - "default_day_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", + "default_day_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", "schedule_rules": [ { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", + "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", "apply_sunday": false, "apply_monday": true, "apply_tuesday": true, @@ -1335,7 +1357,7 @@ }, { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", + "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", "apply_sunday": false, "apply_monday": false, "apply_tuesday": false, @@ -1353,33 +1375,11 @@ ] } ], - "holiday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", - "summer_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", - "winter_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", + "holiday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "summer_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", + "winter_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", "schedule_type_limit": "Temperature" }, - { - "type": "ScheduleRulesetAbridged", - "identifier": "Always On", - "day_schedules": [ - { - "type": "ScheduleDay", - "identifier": "Always On_Day Schedule", - "values": [ - 1.0 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - } - ], - "default_day_schedule": "Always On_Day Schedule", - "schedule_type_limit": "Fractional" - }, { "type": "ScheduleRulesetAbridged", "identifier": "Generic Office Occupancy", @@ -1598,23 +1598,23 @@ }, { "type": "ScheduleTypeLimit", - "identifier": "Activity Level", - "lower_limit": 0.0, + "identifier": "Temperature", + "lower_limit": -273.15, "upper_limit": { "type": "NoLimit" }, "numeric_type": "Continuous", - "unit_type": "ActivityLevel" + "unit_type": "Temperature" }, { "type": "ScheduleTypeLimit", - "identifier": "Temperature", - "lower_limit": -273.15, + "identifier": "Activity Level", + "lower_limit": 0.0, "upper_limit": { "type": "NoLimit" }, "numeric_type": "Continuous", - "unit_type": "Temperature" + "unit_type": "ActivityLevel" } ] } diff --git a/samples/model/model_energy_fixed_interval.json b/samples/model/model_energy_fixed_interval.json index fb74b23..2eb271f 100644 --- a/samples/model/model_energy_fixed_interval.json +++ b/samples/model/model_energy_fixed_interval.json @@ -51,22 +51,52 @@ ], "global_construction_set": "Default Generic Construction Set", "constructions": [ + { + "type": "ShadeConstruction", + "identifier": "Indoor_Light_Shelf", + "solar_reflectance": 0.7, + "visible_reflectance": 0.7, + "is_specular": false + }, + { + "type": "ShadeConstruction", + "identifier": "Generic Shade", + "solar_reflectance": 0.35, + "visible_reflectance": 0.35, + "is_specular": false + }, + { + "type": "AirBoundaryConstructionAbridged", + "identifier": "Generic Air Boundary", + "air_mixing_per_area": 0.1, + "air_mixing_schedule": "Always On" + }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exterior Door", + "identifier": "Generic Interior Wall", "layers": [ - "Generic Painted Metal", - "Generic 25mm Insulation", - "Generic Painted Metal" + "Generic Gypsum Board", + "Generic Wall Air Gap", + "Generic Gypsum Board" ] }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Floor", + "identifier": "Generic Underground Wall", "layers": [ - "Generic Acoustic Tile", - "Generic Ceiling Air Gap", - "Generic LW Concrete" + "Generic 50mm Insulation", + "Generic HW Concrete", + "Generic Wall Air Gap", + "Generic Gypsum Board" + ] + }, + { + "type": "OpaqueConstructionAbridged", + "identifier": "Generic Exterior Door", + "layers": [ + "Generic Painted Metal", + "Generic 25mm Insulation", + "Generic Painted Metal" ] }, { @@ -80,13 +110,11 @@ }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exterior Wall", + "identifier": "Generic Interior Floor", "layers": [ - "Generic Brick", - "Generic LW Concrete", - "Generic 50mm Insulation", - "Generic Wall Air Gap", - "Generic Gypsum Board" + "Generic Acoustic Tile", + "Generic Ceiling Air Gap", + "Generic LW Concrete" ] }, { @@ -99,40 +127,45 @@ }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Ceiling", + "identifier": "Generic Roof", "layers": [ + "Generic Roof Membrane", + "Generic 50mm Insulation", "Generic LW Concrete", "Generic Ceiling Air Gap", "Generic Acoustic Tile" ] }, - { - "type": "AirBoundaryConstructionAbridged", - "identifier": "Generic Air Boundary", - "air_mixing_per_area": 0.1, - "air_mixing_schedule": "Always On" - }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exposed Floor", + "identifier": "Generic Exterior Wall", "layers": [ - "Generic Painted Metal", - "Generic Ceiling Air Gap", + "Generic Brick", + "Generic LW Concrete", "Generic 50mm Insulation", - "Generic LW Concrete" + "Generic Wall Air Gap", + "Generic Gypsum Board" ] }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Roof", + "identifier": "Generic Interior Ceiling", "layers": [ - "Generic Roof Membrane", - "Generic 50mm Insulation", "Generic LW Concrete", "Generic Ceiling Air Gap", "Generic Acoustic Tile" ] }, + { + "type": "OpaqueConstructionAbridged", + "identifier": "Generic Exposed Floor", + "layers": [ + "Generic Painted Metal", + "Generic Ceiling Air Gap", + "Generic 50mm Insulation", + "Generic LW Concrete" + ] + }, { "type": "ShadeConstruction", "identifier": "Outdoor_Light_Shelf", @@ -141,13 +174,10 @@ "is_specular": false }, { - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Underground Roof", + "type": "WindowConstructionAbridged", + "identifier": "Generic Single Pane", "layers": [ - "Generic 50mm Insulation", - "Generic HW Concrete", - "Generic Ceiling Air Gap", - "Generic Acoustic Tile" + "Generic Clear Glass" ] }, { @@ -159,57 +189,44 @@ }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Wall", - "layers": [ - "Generic Gypsum Board", - "Generic Wall Air Gap", - "Generic Gypsum Board" - ] - }, - { - "type": "WindowConstructionAbridged", - "identifier": "Generic Single Pane", - "layers": [ - "Generic Clear Glass" - ] - }, - { - "type": "ShadeConstruction", - "identifier": "Indoor_Light_Shelf", - "solar_reflectance": 0.7, - "visible_reflectance": 0.7, - "is_specular": false - }, - { - "type": "ShadeConstruction", - "identifier": "Generic Shade", - "solar_reflectance": 0.35, - "visible_reflectance": 0.35, - "is_specular": false - }, - { - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Underground Wall", + "identifier": "Generic Underground Roof", "layers": [ "Generic 50mm Insulation", "Generic HW Concrete", - "Generic Wall Air Gap", - "Generic Gypsum Board" + "Generic Ceiling Air Gap", + "Generic Acoustic Tile" ] } ], "materials": [ { "type": "EnergyMaterial", - "identifier": "Generic 25mm Insulation", - "roughness": "MediumRough", - "thickness": 0.05, - "conductivity": 0.03, - "density": 43.0, - "specific_heat": 1210.0, + "identifier": "Generic Acoustic Tile", + "roughness": "MediumSmooth", + "thickness": 0.02, + "conductivity": 0.06, + "density": 368.0, + "specific_heat": 590.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 + "solar_absorptance": 0.2, + "visible_absorptance": 0.2 + }, + { + "type": "EnergyWindowMaterialGlazing", + "identifier": "Generic Low-e Glass", + "thickness": 0.006, + "solar_transmittance": 0.45, + "solar_reflectance": 0.36, + "solar_reflectance_back": 0.36, + "visible_transmittance": 0.71, + "visible_reflectance": 0.21, + "visible_reflectance_back": 0.21, + "infrared_transmittance": 0.0, + "emissivity": 0.84, + "emissivity_back": 0.047, + "conductivity": 1.0, + "dirt_correction": 1.0, + "solar_diffusing": false }, { "type": "EnergyMaterial", @@ -225,34 +242,10 @@ }, { "type": "EnergyMaterial", - "identifier": "Generic Painted Metal", - "roughness": "Smooth", - "thickness": 0.0015, - "conductivity": 45.0, - "density": 7690.0, - "specific_heat": 410.0, - "thermal_absorptance": 0.9, - "solar_absorptance": 0.5, - "visible_absorptance": 0.5 - }, - { - "type": "EnergyMaterial", - "identifier": "Generic 25mm Wood", - "roughness": "MediumSmooth", - "thickness": 0.0254, - "conductivity": 0.15, - "density": 608.0, - "specific_heat": 1630.0, - "thermal_absorptance": 0.9, - "solar_absorptance": 0.5, - "visible_absorptance": 0.5 - }, - { - "type": "EnergyMaterial", - "identifier": "Generic Ceiling Air Gap", + "identifier": "Generic Wall Air Gap", "roughness": "Smooth", "thickness": 0.1, - "conductivity": 0.556, + "conductivity": 0.667, "density": 1.28, "specific_heat": 1000.0, "thermal_absorptance": 0.9, @@ -260,60 +253,37 @@ "visible_absorptance": 0.7 }, { - "type": "EnergyWindowMaterialGas", - "identifier": "Generic Window Air Gap", - "thickness": 0.0127, - "gas_type": "Air" + "type": "EnergyMaterial", + "identifier": "Generic 25mm Insulation", + "roughness": "MediumRough", + "thickness": 0.05, + "conductivity": 0.03, + "density": 43.0, + "specific_heat": 1210.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 }, { "type": "EnergyMaterial", - "identifier": "Generic Wall Air Gap", + "identifier": "Generic Ceiling Air Gap", "roughness": "Smooth", "thickness": 0.1, - "conductivity": 0.667, + "conductivity": 0.556, "density": 1.28, "specific_heat": 1000.0, "thermal_absorptance": 0.9, "solar_absorptance": 0.7, "visible_absorptance": 0.7 }, - { - "type": "EnergyWindowMaterialGlazing", - "identifier": "Generic Clear Glass", - "thickness": 0.006, - "solar_transmittance": 0.77, - "solar_reflectance": 0.07, - "solar_reflectance_back": 0.07, - "visible_transmittance": 0.88, - "visible_reflectance": 0.08, - "visible_reflectance_back": 0.08, - "infrared_transmittance": 0.0, - "emissivity": 0.84, - "emissivity_back": 0.84, - "conductivity": 1.0, - "dirt_correction": 1.0, - "solar_diffusing": false - }, - { - "type": "EnergyMaterial", - "identifier": "Generic Brick", - "roughness": "MediumRough", - "thickness": 0.1, - "conductivity": 0.9, - "density": 1920.0, - "specific_heat": 790.0, - "thermal_absorptance": 0.9, - "solar_absorptance": 0.65, - "visible_absorptance": 0.65 - }, { "type": "EnergyMaterial", - "identifier": "Generic LW Concrete", + "identifier": "Generic HW Concrete", "roughness": "MediumRough", - "thickness": 0.1, - "conductivity": 0.53, - "density": 1280.0, - "specific_heat": 840.0, + "thickness": 0.2, + "conductivity": 1.95, + "density": 2240.0, + "specific_heat": 900.0, "thermal_absorptance": 0.9, "solar_absorptance": 0.8, "visible_absorptance": 0.8 @@ -332,56 +302,86 @@ }, { "type": "EnergyMaterial", - "identifier": "Generic HW Concrete", + "identifier": "Generic 50mm Insulation", "roughness": "MediumRough", - "thickness": 0.2, - "conductivity": 1.95, - "density": 2240.0, - "specific_heat": 900.0, + "thickness": 0.05, + "conductivity": 0.03, + "density": 43.0, + "specific_heat": 1210.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 + }, + { + "type": "EnergyMaterial", + "identifier": "Generic LW Concrete", + "roughness": "MediumRough", + "thickness": 0.1, + "conductivity": 0.53, + "density": 1280.0, + "specific_heat": 840.0, "thermal_absorptance": 0.9, "solar_absorptance": 0.8, "visible_absorptance": 0.8 }, { - "type": "EnergyWindowMaterialGlazing", - "identifier": "Generic Low-e Glass", - "thickness": 0.006, - "solar_transmittance": 0.45, - "solar_reflectance": 0.36, - "solar_reflectance_back": 0.36, - "visible_transmittance": 0.71, - "visible_reflectance": 0.21, - "visible_reflectance_back": 0.21, - "infrared_transmittance": 0.0, - "emissivity": 0.84, - "emissivity_back": 0.047, - "conductivity": 1.0, - "dirt_correction": 1.0, - "solar_diffusing": false + "type": "EnergyMaterial", + "identifier": "Generic 25mm Wood", + "roughness": "MediumSmooth", + "thickness": 0.0254, + "conductivity": 0.15, + "density": 608.0, + "specific_heat": 1630.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.5, + "visible_absorptance": 0.5 }, { "type": "EnergyMaterial", - "identifier": "Generic Acoustic Tile", - "roughness": "MediumSmooth", - "thickness": 0.02, - "conductivity": 0.06, - "density": 368.0, - "specific_heat": 590.0, + "identifier": "Generic Painted Metal", + "roughness": "Smooth", + "thickness": 0.0015, + "conductivity": 45.0, + "density": 7690.0, + "specific_heat": 410.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.2, - "visible_absorptance": 0.2 + "solar_absorptance": 0.5, + "visible_absorptance": 0.5 + }, + { + "type": "EnergyWindowMaterialGas", + "identifier": "Generic Window Air Gap", + "thickness": 0.0127, + "gas_type": "Air" }, { "type": "EnergyMaterial", - "identifier": "Generic 50mm Insulation", + "identifier": "Generic Brick", "roughness": "MediumRough", - "thickness": 0.05, - "conductivity": 0.03, - "density": 43.0, - "specific_heat": 1210.0, + "thickness": 0.1, + "conductivity": 0.9, + "density": 1920.0, + "specific_heat": 790.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 + "solar_absorptance": 0.65, + "visible_absorptance": 0.65 + }, + { + "type": "EnergyWindowMaterialGlazing", + "identifier": "Generic Clear Glass", + "thickness": 0.006, + "solar_transmittance": 0.77, + "solar_reflectance": 0.07, + "solar_reflectance_back": 0.07, + "visible_transmittance": 0.88, + "visible_reflectance": 0.08, + "visible_reflectance_back": 0.08, + "infrared_transmittance": 0.0, + "emissivity": 0.84, + "emissivity_back": 0.84, + "conductivity": 1.0, + "dirt_correction": 1.0, + "solar_diffusing": false } ], "hvacs": [ @@ -456,18161 +456,9372 @@ } ], "schedules": [ - { - "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Heating", - "day_schedules": [ - { - "type": "ScheduleDay", - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", - "values": [ - 15.6 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", - "values": [ - 15.6 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", - "values": [ - 15.6, - 17.6, - 19.6, - 21.0, - 15.6 - ], - "times": [ - [ - 0, - 0 - ], - [ - 5, - 0 - ], - [ - 6, - 0 - ], - [ - 7, - 0 - ], - [ - 22, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", - "values": [ - 15.6, - 17.8, - 20.0, - 21.0, - 15.6 - ], - "times": [ - [ - 0, - 0 - ], - [ - 5, - 0 - ], - [ - 6, - 0 - ], - [ - 7, - 0 - ], - [ - 22, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", - "values": [ - 15.6, - 17.8, - 20.0, - 21.0, - 15.6 - ], - "times": [ - [ - 0, - 0 - ], - [ - 5, - 0 - ], - [ - 6, - 0 - ], - [ - 7, - 0 - ], - [ - 17, - 0 - ] - ], - "interpolate": false - } - ], - "default_day_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", - "schedule_rules": [ - { - "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", - "apply_sunday": false, - "apply_monday": true, - "apply_tuesday": true, - "apply_wednesday": true, - "apply_thursday": true, - "apply_friday": true, - "apply_saturday": false, - "start_date": [ - 1, - 1 - ], - "end_date": [ - 12, - 31 - ] - }, - { - "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", - "apply_sunday": false, - "apply_monday": false, - "apply_tuesday": false, - "apply_wednesday": false, - "apply_thursday": false, - "apply_friday": false, - "apply_saturday": true, - "start_date": [ - 1, - 1 - ], - "end_date": [ - 12, - 31 - ] - } - ], - "holiday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", - "summer_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", - "winter_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", - "schedule_type_limit": "Temperature" - }, - { - "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Lighting", - "day_schedules": [ - { - "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", - "values": [ - 0.05, - 0.04311628, - 0.05 - ], - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 18, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", - "values": [ - 1.0 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", - "values": [ - 0.0 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", - "values": [ - 0.05, - 0.08623256, - 0.25869768, - 0.12934884, - 0.04311628, - 0.05 - ], - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 8, - 0 - ], - [ - 12, - 0 - ], - [ - 17, - 0 - ], - [ - 19, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", - "values": [ - 0.05, - 0.1, - 0.08623256, - 0.25869768, - 0.77609304, - 0.4311628, - 0.25869768, - 0.17246512, - 0.08623256, - 0.04311628 - ], - "times": [ - [ - 0, - 0 - ], - [ - 5, - 0 - ], - [ - 6, - 0 - ], - [ - 7, - 0 - ], - [ - 8, - 0 - ], - [ - 17, - 0 - ], - [ - 18, - 0 - ], - [ - 20, - 0 - ], - [ - 22, - 0 - ], - [ - 23, - 0 - ] - ], - "interpolate": false - } - ], - "default_day_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", - "schedule_rules": [ - { - "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", - "apply_sunday": false, - "apply_monday": true, - "apply_tuesday": true, - "apply_wednesday": true, - "apply_thursday": true, - "apply_friday": true, - "apply_saturday": false, - "start_date": [ - 1, - 1 - ], - "end_date": [ - 12, - 31 - ] - }, - { - "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", - "apply_sunday": false, - "apply_monday": false, - "apply_tuesday": false, - "apply_wednesday": false, - "apply_thursday": false, - "apply_friday": false, - "apply_saturday": true, - "start_date": [ - 1, - 1 - ], - "end_date": [ - 12, - 31 - ] - } - ], - "holiday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", - "summer_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", - "winter_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", - "schedule_type_limit": "Fractional" - }, { "type": "ScheduleFixedIntervalAbridged", "identifier": "Random Occupancy", "values": [ - 0.2361, - 0.2942, - 0.3381, - 0.4632, - 0.1502, - 0.4133, - 0.7773, - 0.055, - 0.674, - 0.915, - 0.1763, - 0.5495, - 0.0567, - 0.7901, - 0.7427, - 0.6481, - 0.0809, - 0.3212, - 0.6632, - 0.2169, - 0.7399, - 0.5835, - 0.7428, - 0.1146, - 0.7015, - 0.5642, - 0.3286, - 0.9724, - 0.6379, - 0.1597, - 0.4036, - 0.2859, - 0.1874, - 0.9449, - 0.2634, - 0.6717, - 0.1791, - 0.9529, - 0.4648, - 0.4289, - 0.5868, - 0.7024, - 0.6722, - 0.3521, - 0.4228, - 0.7322, - 0.362, - 0.4538, - 0.2687, - 0.8636, - 0.5099, - 0.5195, - 0.6989, - 0.2886, - 0.7565, - 0.2641, - 0.3072, - 0.8313, - 0.9153, - 0.322, - 0.1554, - 0.5813, - 0.6891, - 0.6196, - 0.9118, - 0.9984, - 0.5166, - 0.2694, - 0.3805, - 0.557, - 0.2992, - 0.7477, - 0.8191, - 0.3607, - 0.3549, - 0.0761, - 0.5665, - 0.5135, - 0.2196, - 0.9962, - 0.6448, - 0.7656, - 0.5567, - 0.0183, - 0.382, - 0.8191, - 0.1768, - 0.2991, - 0.2521, - 0.0079, - 0.719, - 0.8957, - 0.6609, - 0.4858, - 0.1466, - 0.7645, - 0.8476, - 0.6891, - 0.545, - 0.4194, - 0.4266, - 0.0765, - 0.1477, - 0.3794, - 0.2666, - 0.0094, - 0.6394, - 0.9263, - 0.1689, - 0.3639, - 0.6125, - 0.2968, - 0.7464, - 0.1958, - 0.7202, - 0.739, - 0.0272, - 0.0479, - 0.0065, - 0.8348, - 0.6046, - 0.4921, - 0.0831, - 0.1816, - 0.4102, - 0.0664, - 0.0434, - 0.9801, - 0.7368, - 0.8321, - 0.0941, - 0.5284, + 0.7739, + 0.8769, + 0.6034, + 0.2524, + 0.971, + 0.974, + 0.5905, + 0.1392, + 0.447, + 0.4398, + 0.5457, + 0.0859, + 0.5161, + 0.3751, + 0.8372, + 0.6208, + 0.149, + 0.1256, + 0.9462, + 0.6701, + 0.9215, + 0.4919, + 0.0829, + 0.3215, + 0.9273, + 0.906, + 0.4165, + 0.2445, + 0.6279, + 0.0212, + 0.7519, + 0.1948, + 0.1632, + 0.8262, + 0.1428, + 0.0216, + 0.8182, + 0.0205, + 0.1288, + 0.4672, + 0.6381, + 0.5118, + 0.0144, + 0.3815, + 0.185, + 0.3665, + 0.411, + 0.2637, + 0.5516, + 0.5511, 0.0243, - 0.5, - 0.948, - 0.0165, - 0.0077, - 0.6897, - 0.7404, - 0.273, - 0.8223, - 0.4949, - 0.5502, - 0.4207, - 0.7843, - 0.2132, - 0.838, - 0.0102, - 0.5686, - 0.2684, - 0.891, - 0.6347, - 0.5669, - 0.4673, - 0.3772, - 0.6272, - 0.6608, - 0.0108, - 0.1437, - 0.7099, - 0.2907, - 0.8862, - 0.7012, - 0.6341, - 0.0581, - 0.2225, - 0.3332, - 0.0885, - 0.4602, - 0.8929, - 0.5628, - 0.0193, - 0.3644, - 0.5444, - 0.9075, - 0.7673, - 0.0527, - 0.891, - 0.5277, - 0.2732, - 0.1453, - 0.9322, - 0.5355, - 0.9615, - 0.6461, - 0.7942, - 0.7802, - 0.6128, - 0.5883, - 0.9233, - 0.8784, - 0.1082, - 0.8175, - 0.1138, - 0.9153, - 0.7142, - 0.4116, - 0.6681, - 0.848, - 0.2991, - 0.0151, - 0.8954, - 0.939, - 0.755, - 0.3595, - 0.8275, - 0.3676, - 0.6817, - 0.4905, - 0.1958, - 0.7685, - 0.5611, - 0.4004, - 0.654, - 0.2579, - 0.4691, - 0.9364, - 0.132, - 0.7308, - 0.7326, - 0.9997, - 0.9204, - 0.7203, - 0.8247, - 0.6473, - 0.9659, - 0.7516, - 0.6147, - 0.947, - 0.2382, - 0.3154, - 0.327, - 0.391, - 0.9827, - 0.4503, - 0.2485, - 0.1334, - 0.9687, - 0.5621, + 0.8908, + 0.9097, + 0.611, + 0.8115, + 0.4017, + 0.9404, + 0.677, + 0.9642, + 0.3683, + 0.6192, + 0.4146, + 0.7097, + 0.799, + 0.6819, + 0.4144, 0.1817, - 0.3925, - 0.9242, - 0.7195, - 0.1358, - 0.9635, - 0.5375, - 0.1548, - 0.1695, - 0.9309, - 0.8612, - 0.5554, - 0.7577, - 0.5495, - 0.7966, - 0.9615, - 0.1466, - 0.4234, - 0.6754, - 0.6882, - 0.0515, - 0.019, - 0.905, - 0.2773, - 0.4105, - 0.6909, - 0.5849, + 0.9629, + 0.3094, + 0.7436, + 0.0352, + 0.6617, + 0.2367, + 0.1421, + 0.1424, + 0.979, + 0.203, + 0.0998, + 0.4042, + 0.3584, + 0.1361, + 0.8541, + 0.6188, + 0.7342, + 0.1658, + 0.8447, + 0.6443, + 0.3189, + 0.3791, + 0.0348, + 0.9823, + 0.0611, + 0.501, + 0.8264, + 0.52, + 0.742, + 0.9953, + 0.322, + 0.5656, + 0.6914, + 0.3981, + 0.0447, + 0.1825, + 0.7252, + 0.2003, + 0.3324, + 0.7301, + 0.7854, + 0.8947, + 0.5235, + 0.0085, + 0.1089, + 0.3164, + 0.9949, + 0.7101, 0.3802, - 0.9087, - 0.2804, - 0.5019, - 0.2911, - 0.5183, - 0.6582, - 0.3042, - 0.312, - 0.8512, - 0.1554, - 0.8279, - 0.3341, - 0.9081, - 0.4305, - 0.4946, - 0.0734, - 0.9708, - 0.3694, - 0.2589, - 0.6766, - 0.098, - 0.7454, - 0.1094, - 0.9679, - 0.8049, - 0.1012, - 0.8699, - 0.3509, - 0.3747, - 0.5752, - 0.1221, - 0.6274, - 0.2401, - 0.6269, - 0.1244, - 0.4403, - 0.8468, - 0.6872, - 0.0554, - 0.4197, - 0.3859, + 0.3009, + 0.0164, + 0.2452, + 0.2326, + 0.3829, + 0.5986, + 0.1067, + 0.7161, + 0.3573, + 0.432, + 0.1553, + 0.5257, + 0.2838, + 0.6482, + 0.7346, + 0.9741, + 0.8367, + 0.5851, + 0.6467, + 0.8666, + 0.4664, + 0.7005, + 0.2648, + 0.4616, + 0.4492, + 0.0176, + 0.3287, + 0.0874, + 0.3381, + 0.0373, + 0.8174, + 0.3372, + 0.8587, + 0.6408, + 0.6194, + 0.8575, + 0.2776, + 0.7926, + 0.2189, + 0.8545, + 0.8531, + 0.1285, + 0.998, + 0.803, + 0.9515, + 0.666, 0.9361, - 0.942, - 0.1171, - 0.1718, - 0.1662, - 0.3912, - 0.4769, - 0.2234, - 0.7014, - 0.6969, - 0.7815, - 0.4873, - 0.1131, - 0.8002, - 0.3862, - 0.5225, - 0.8087, - 0.9325, - 0.5631, - 0.1476, - 0.3168, - 0.7211, - 0.4093, - 0.3374, - 0.0461, - 0.3364, - 0.4065, - 0.1456, - 0.2721, - 0.9019, - 0.4716, - 0.7553, - 0.2512, - 0.7381, - 0.81, - 0.4365, - 0.8172, - 0.6916, - 0.0864, - 0.2787, - 0.1107, - 0.849, - 0.6406, - 0.5133, - 0.42, - 0.8116, - 0.6102, - 0.427, - 0.5618, - 0.4726, - 0.1104, - 0.9024, - 0.2545, - 0.0965, - 0.8189, - 0.8197, - 0.7259, - 0.2439, - 0.9795, - 0.0915, - 0.6726, - 0.8719, - 0.0773, - 0.4771, - 0.583, - 0.729, - 0.2742, - 0.0948, - 0.4375, - 0.879, - 0.4381, - 0.6484, - 0.1303, - 0.2259, - 0.6016, - 0.0683, - 0.7372, - 0.1089, - 0.2454, - 0.4666, - 0.557, - 0.9008, - 0.6518, - 0.527, - 0.3832, - 0.8882, - 0.1706, - 0.3054, - 0.7922, - 0.6615, - 0.2383, - 0.2439, - 0.5411, - 0.2568, - 0.4769, - 0.1183, - 0.4454, - 0.0291, - 0.8272, - 0.3689, - 0.5836, - 0.1735, - 0.2357, - 0.9792, - 0.2492, - 0.4987, - 0.2401, - 0.2239, - 0.8036, - 0.1276, - 0.6302, - 0.7304, - 0.3529, - 0.2042, - 0.0569, - 0.6268, - 0.9088, - 0.1927, - 0.4342, - 0.861, - 0.4412, - 0.1224, - 0.9919, - 0.7759, - 0.2584, + 0.3334, + 0.372, + 0.2104, + 0.3895, + 0.3153, + 0.091, + 0.3946, + 0.8182, + 0.4461, + 0.5633, + 0.8678, + 0.8702, + 0.6779, + 0.9586, + 0.7706, + 1.0, + 0.5367, + 0.0956, + 0.4671, + 0.5045, + 0.9133, + 0.1004, + 0.9711, + 0.755, + 0.9695, + 0.665, + 0.241, + 0.2877, + 0.0298, + 0.3434, + 0.2175, + 0.8243, 0.8537, + 0.9035, + 0.5729, + 0.5543, + 0.7218, + 0.0725, + 0.2355, + 0.4008, + 0.6954, + 0.842, + 0.3232, + 0.0306, + 0.044, + 0.0905, + 0.2011, + 0.6056, + 0.2315, + 0.2865, + 0.9862, + 0.757, + 0.9244, + 0.1597, + 0.5313, + 0.3733, + 0.4167, + 0.5715, + 0.3312, + 0.6451, + 0.66, + 0.1106, + 0.2011, + 0.6283, + 0.4658, + 0.2948, + 0.3588, + 0.8933, + 0.0911, + 0.7057, + 0.8077, + 0.8832, + 0.1785, + 0.8215, + 0.5036, + 0.5264, + 0.2548, + 0.8099, + 0.8202, + 0.2535, + 0.2944, + 0.4252, + 0.0124, + 0.0578, + 0.8514, + 0.7701, + 0.1898, + 0.0408, + 0.6098, + 0.7086, + 0.9738, + 0.1573, + 0.6055, + 0.4717, + 0.25, + 0.2381, + 0.1353, + 0.8486, + 0.7351, + 0.2687, + 0.6011, + 0.014, + 0.6895, + 0.3885, + 0.736, + 0.4684, + 0.1944, + 0.3593, + 0.0913, + 0.6546, + 0.8091, + 0.6511, + 0.192, + 0.9679, 0.0598, + 0.0254, + 0.6411, + 0.2062, + 0.888, + 0.2181, + 0.7922, + 0.0554, + 0.3226, + 0.1121, + 0.0346, + 0.1654, + 0.7032, + 0.567, + 0.051, + 0.6016, + 0.5415, + 0.8436, + 0.9042, + 0.1013, + 0.4989, + 0.2001, + 0.3919, + 0.7001, + 0.0854, + 0.6233, + 0.2601, + 0.4207, + 0.7035, + 0.4443, + 0.0503, + 0.0053, + 0.7851, + 0.7674, + 0.3193, + 0.1107, + 0.9724, + 0.7502, + 0.9361, + 0.0149, + 0.1139, + 0.1671, + 0.4054, + 0.0961, + 0.4049, + 0.6216, + 0.704, + 0.5714, + 0.471, + 0.8937, + 0.329, + 0.5251, + 0.2644, + 0.2673, + 0.7893, + 0.0014, + 0.2981, + 0.5862, + 0.0561, + 0.1864, + 0.0818, + 0.7911, + 0.922, + 0.5571, + 0.1891, + 0.3806, + 0.0797, + 0.0428, + 0.1248, + 0.8477, + 0.0977, + 0.754, + 0.277, + 0.8067, + 0.5685, + 0.336, + 0.3538, + 0.1643, + 0.2403, + 0.9258, + 0.9125, + 0.0097, + 0.2673, + 0.8992, + 0.8151, + 0.3933, + 0.7649, + 0.4293, + 0.0807, + 0.2165, + 0.0919, + 0.2289, + 0.1558, + 0.9988, + 0.6786, + 0.7223, + 0.4717, 0.112, - 0.5868, - 0.9947, - 0.8945, - 0.2769, - 0.2726, - 0.9778, - 0.5374, - 0.5303, - 0.6497, - 0.1909, - 0.9121, - 0.8035, - 0.1131, - 0.7751, - 0.2565, - 0.1393, - 0.3021, - 0.622, - 0.6697, - 0.6565, - 0.07, - 0.5069, - 0.9986, - 0.6226, - 0.2304, - 0.2616, - 0.9096, - 0.5299, - 0.7064, - 0.7067, - 0.5773, - 0.0749, - 0.664, - 0.2616, - 0.5729, - 0.1486, - 0.8065, - 0.639, - 0.6109, + 0.6206, + 0.875, + 0.8484, + 0.2901, + 0.6351, + 0.3136, + 0.6325, + 0.806, + 0.0855, + 0.1607, 0.3433, - 0.4376, - 0.0324, - 0.8144, - 0.354, - 0.7838, - 0.3691, - 0.4147, - 0.4039, - 0.9626, - 0.5247, - 0.1953, - 0.0538, - 0.3549, - 0.8752, - 0.3607, - 0.5376, - 0.8749, - 0.3753, - 0.5748, - 0.6319, - 0.2487, - 0.5192, - 0.6041, - 0.8966, - 0.0024, - 0.6704, - 0.6583, - 0.4217, - 0.4561, - 0.1383, - 0.1449, - 0.6808, - 0.3241, - 0.1781, - 0.8259, - 0.356, - 0.3751, - 0.0215, - 0.369, - 0.5652, - 0.125, - 0.5661, - 0.5499, - 0.2772, - 0.34, - 0.4032, - 0.3687, - 0.3303, - 0.4458, - 0.1317, - 0.4115, - 0.8647, - 0.0949, - 0.1824, - 0.6744, - 0.0291, - 0.5169, - 0.1118, - 0.3095, - 0.8575, - 0.854, - 0.1496, - 0.9455, - 0.9959, - 0.2532, - 0.171, - 0.6685, - 0.1715, - 0.5003, - 0.2881, - 0.7788, - 0.8184, - 0.9678, - 0.5576, - 0.9587, - 0.8582, - 0.0375, - 0.0853, - 0.6751, - 0.1731, - 0.0385, - 0.9787, - 0.2408, - 0.6639, - 0.8058, - 0.6487, - 0.5924, - 0.6766, - 0.836, - 0.9057, - 0.2733, - 0.8845, - 0.5049, - 0.8181, - 0.6157, - 0.9681, - 0.8894, - 0.9646, - 0.9574, - 0.679, - 0.7227, - 0.1008, - 0.6905, - 0.2922, - 0.8104, - 0.2439, - 0.2691, - 0.197, - 0.4118, - 0.0324, - 0.6153, - 0.46, - 0.104, - 0.9478, - 0.0828, - 0.5356, - 0.3515, - 0.3944, - 0.2272, - 0.3038, - 0.549, - 0.9239, - 0.6474, - 0.0004, - 0.9456, - 0.9662, - 0.3168, - 0.233, - 0.5243, - 0.9887, - 0.9706, - 0.5809, - 0.1659, - 0.7923, - 0.5128, - 0.8035, - 0.018, - 0.517, - 0.6143, - 0.9574, - 0.2827, - 0.5805, - 0.4219, - 0.9525, - 0.7381, - 0.6521, - 0.1184, - 0.5728, - 0.8839, - 0.3878, - 0.8483, - 0.7211, - 0.1462, - 0.7307, - 0.6474, - 0.5805, - 0.9891, - 0.5954, - 0.4142, - 0.5276, - 0.075, - 0.5504, - 0.1731, - 0.2209, - 0.5396, - 0.551, - 0.6984, - 0.1274, - 0.001, - 0.9488, + 0.8311, + 0.9058, + 0.2066, + 0.2058, + 0.002, + 0.7518, + 0.7692, + 0.3598, + 0.5307, + 0.2101, + 0.9166, + 0.2644, + 0.6218, + 0.5553, + 0.0086, + 0.7357, + 0.3455, + 0.0638, + 0.265, + 0.0851, + 0.7952, + 0.0154, + 0.7956, + 0.5574, + 0.5789, + 0.1191, + 0.9695, + 0.1011, + 0.9893, + 0.0591, + 0.583, + 0.6545, + 0.4609, + 0.0704, + 0.3744, + 0.3293, + 0.5198, + 0.3209, + 0.7339, + 0.3502, + 0.3129, + 0.5351, + 0.5368, + 0.7057, + 0.3185, + 0.1505, + 0.4715, + 0.9932, + 0.6746, + 0.147, + 0.1707, + 0.2055, + 0.2616, + 0.8322, + 0.8801, + 0.2647, + 0.8429, + 0.236, + 0.5391, + 0.4267, + 0.8285, + 0.4526, + 0.2785, + 0.7448, + 0.7374, + 0.9817, + 0.378, + 0.8566, + 0.705, + 0.4006, + 0.8452, + 0.4145, + 0.4001, + 0.7011, + 0.8275, + 0.9719, + 0.7812, + 0.1444, + 0.5414, + 0.1075, + 0.0507, + 0.8981, + 0.775, + 0.4251, + 0.5394, + 0.1516, + 0.1089, + 0.0908, + 0.2855, + 0.5959, + 0.4273, + 0.1673, + 0.3629, + 0.4157, + 0.2251, + 0.767, + 0.2966, + 0.5362, + 0.2772, + 0.5424, + 0.5141, + 0.1369, + 0.4682, + 0.673, + 0.8097, + 0.2006, + 0.4183, + 0.2456, 0.6645, - 0.8693, - 0.8247, - 0.8331, - 0.0394, - 0.0738, - 0.4778, - 0.991, - 0.2035, - 0.5675, - 0.9283, - 0.8646, - 0.2708, - 0.8803, - 0.7672, - 0.4303, - 0.7915, - 0.3847, - 0.7507, - 0.2411, - 0.7259, - 0.7044, - 0.4258, - 0.1983, - 0.595, - 0.7738, - 0.9331, - 0.462, - 0.9718, - 0.6977, - 0.5904, - 0.5137, - 0.2139, - 0.8089, - 0.9188, - 0.8555, - 0.4935, - 0.6946, - 0.6949, - 0.3199, - 0.1735, - 0.7263, - 0.9397, - 0.6897, - 0.7628, - 0.4459, - 0.41, - 0.6978, - 0.2176, - 0.5871, - 0.8251, - 0.8908, - 0.6605, - 0.5793, - 0.4913, - 0.4674, - 0.7806, - 0.6375, - 0.8113, - 0.9938, - 0.0717, - 0.6147, - 0.7048, - 0.4242, - 0.3046, - 0.7226, - 0.1782, - 0.9813, + 0.3596, + 0.1932, + 0.9406, + 0.6542, + 0.7609, + 0.2372, + 0.1431, + 0.7582, + 0.2076, 0.6209, - 0.1972, - 0.8672, - 0.1283, - 0.3292, - 0.8238, - 0.0999, - 0.1703, - 0.2189, - 0.5886, - 0.7569, - 0.5065, - 0.298, - 0.6415, - 0.2324, - 0.1969, - 0.795, - 0.4778, - 0.8616, - 0.6971, - 0.9206, - 0.0595, - 0.6687, - 0.9918, - 0.4216, - 0.5842, - 0.7534, - 0.8394, - 0.9793, - 0.9552, - 0.7491, + 0.6749, + 0.3963, + 0.7005, + 0.1431, + 0.2309, + 0.7738, + 0.4514, + 0.0325, + 0.6128, + 0.579, + 0.8679, + 0.8999, + 0.8527, + 0.3773, + 0.674, + 0.5002, + 0.955, + 0.4055, + 0.4619, + 0.4075, + 0.6594, + 0.16, + 0.2435, + 0.6479, + 0.4992, + 0.1057, + 0.7881, + 0.5184, + 0.4094, + 0.2649, + 0.0313, + 0.2601, + 0.9878, + 0.8031, + 0.8115, + 0.8725, + 0.2727, + 0.1749, + 0.6047, + 0.1685, + 0.5231, + 0.2135, + 0.3203, + 0.2986, + 0.0194, + 0.4346, + 0.8096, + 0.4694, + 0.7964, + 0.2171, + 0.3863, + 0.1193, + 0.332, + 0.4506, + 0.8959, + 0.8881, + 0.9713, + 0.6335, + 0.7103, + 0.3315, + 0.5591, + 0.398, + 0.9557, + 0.7222, + 0.2411, + 0.4517, + 0.8004, + 0.0575, + 0.3384, + 0.5116, + 0.0751, + 0.7127, + 0.346, + 0.4752, + 0.4855, + 0.6236, + 0.6426, + 0.5923, + 0.188, + 0.6559, + 0.4275, + 0.8303, + 0.4121, + 0.8133, + 0.2027, + 0.0013, + 0.4918, + 0.4433, + 0.1524, + 0.2149, + 0.667, 0.2833, - 0.504, - 0.8183, - 0.5678, - 0.4026, - 0.0943, - 0.0333, - 0.7792, - 0.7129, - 0.256, - 0.1937, - 0.792, - 0.754, - 0.5843, - 0.1594, - 0.1154, - 0.9433, - 0.9947, - 0.8406, - 0.4821, - 0.3409, - 0.5926, - 0.3235, - 0.1723, - 0.142, - 0.5401, - 0.1583, - 0.5304, - 0.3983, - 0.7986, - 0.5233, - 0.0547, - 0.0257, - 0.5805, - 0.3162, - 0.2005, - 0.4047, - 0.821, - 0.6339, - 0.7294, - 0.8628, - 0.4824, - 0.173, - 0.9357, - 0.504, - 0.0054, - 0.7335, - 0.287, - 0.9563, - 0.1276, - 0.5826, - 0.125, - 0.3199, - 0.8856, - 0.2859, - 0.1515, - 0.6084, - 0.8543, - 0.3858, - 0.8131, - 0.3996, - 0.6296, - 0.8363, - 0.2296, - 0.3051, - 0.2081, - 0.4446, - 0.6224, - 0.395, - 0.2352, - 0.4993, - 0.6688, - 0.0702, - 0.171, - 0.8895, - 0.4621, - 0.5208, - 0.5494, - 0.1101, - 0.8853, - 0.4048, - 0.3532, - 0.1852, - 0.1521, - 0.3787, - 0.56, - 0.8921, - 0.7162, - 0.5831, - 0.5313, - 0.4736, - 0.5479, - 0.025, - 0.984, - 0.8965, - 0.8165, - 0.5491, - 0.8418, - 0.4221, - 0.082, - 0.3566, - 0.9351, - 0.7823, - 0.1751, - 0.9882, - 0.853, - 0.1656, - 0.7453, - 0.8811, - 0.8543, - 0.5461, - 0.4782, - 0.4907, - 0.5327, - 0.3448, - 0.2293, - 0.6438, - 0.7787, - 0.7192, - 0.5289, - 0.5938, - 0.7338, - 0.2211, - 0.2138, - 0.826, - 0.5768, - 0.4534, - 0.3254, - 0.0928, - 0.9128, - 0.9621, - 0.3145, - 0.3459, - 0.7897, - 0.2553, - 0.3545, - 0.1334, - 0.9039, - 0.299, - 0.6188, - 0.7916, - 0.2071, - 0.3116, - 0.3236, - 0.3618, - 0.6382, - 0.5089, - 0.6039, - 0.6172, - 0.4398, - 0.6645, - 0.7264, - 0.9949, - 0.9502, - 0.9421, - 0.1043, - 0.4051, - 0.377, - 0.4603, - 0.4255, - 0.0119, - 0.1788, - 0.7764, - 0.9023, - 0.6439, - 0.4185, - 0.9956, - 0.9577, - 0.9425, - 0.7906, - 0.7192, - 0.8346, - 0.6549, - 0.5337, - 0.9241, - 0.7149, - 0.814, - 0.1543, - 0.4364, - 0.629, - 0.5983, - 0.1299, - 0.8405, - 0.1732, - 0.2416, - 0.0652, - 0.7603, - 0.9081, - 0.4027, - 0.5938, - 0.7892, - 0.4199, - 0.9899, - 0.7856, - 0.0269, - 0.856, - 0.3132, - 0.3005, - 0.233, - 0.3694, - 0.204, - 0.0375, - 0.273, - 0.3052, - 0.5629, - 0.9133, - 0.0625, - 0.1006, - 0.6324, - 0.4985, - 0.3424, - 0.0211, - 0.6126, - 0.1339, - 0.597, - 0.6219, - 0.8733, - 0.2363, - 0.2268, - 0.7673, - 0.1033, - 0.8148, - 0.9541, - 0.9632, - 0.3548, - 0.3553, - 0.544, - 0.3412, - 0.7351, - 0.3792, - 0.8699, - 0.8546, - 0.7758, - 0.1077, - 0.5228, - 0.1057, - 0.6, - 0.8676, - 0.9204, + 0.7446, + 0.2546, + 0.0688, + 0.1667, + 0.0288, + 0.5114, + 0.6035, + 0.4238, + 0.0624, + 0.8771, + 0.2934, + 0.6195, + 0.1901, + 0.3315, + 0.4339, + 0.8632, + 0.8885, + 0.9406, + 0.4089, + 0.5325, + 0.2771, + 0.0688, + 0.6202, + 0.1514, + 0.6405, + 0.3878, + 0.4929, + 0.31, + 0.5662, + 0.6862, + 0.5163, + 0.7713, 0.9892, - 0.1497, - 0.2029, - 0.3804, - 0.9551, - 0.411, - 0.8938, - 0.6881, - 0.8465, - 0.2552, - 0.5899, - 0.2391, - 0.4373, - 0.953, - 0.8664, - 0.9594, - 0.813, - 0.0207, - 0.5589, - 0.2518, - 0.1161, - 0.0239, - 0.1167, - 0.8544, - 0.8338, - 0.5275, - 0.1584, - 0.9597, - 0.7807, - 0.4683, - 0.2385, - 0.686, - 0.6139, - 0.6278, - 0.5243, - 0.8089, - 0.3729, - 0.8807, - 0.5164, - 0.7421, - 0.1929, - 0.99, - 0.1895, - 0.392, - 0.5101, - 0.1885, - 0.29, - 0.1969, - 0.0164, - 0.863, - 0.897, - 0.6974, - 0.3527, - 0.2675, - 0.276, + 0.8093, + 0.4465, + 0.7553, + 0.5626, + 0.9398, + 0.7276, + 0.6263, + 0.8741, + 0.321, + 0.1515, + 0.0089, 0.7584, - 0.3875, - 0.4176, - 0.9137, - 0.8965, - 0.0337, - 0.5023, - 0.6117, - 0.23, - 0.2696, - 0.6698, - 0.8088, - 0.4748, - 0.8059, - 0.0064, - 0.858, - 0.7583, - 0.0048, - 0.6545, - 0.8937, - 0.4021, - 0.0367, - 0.1712, - 0.4792, - 0.6651, - 0.0417, - 0.0398, - 0.1761, - 0.829, - 0.5611, - 0.3806, - 0.763, - 0.9514, - 0.1956, - 0.3664, - 0.9218, - 0.5575, - 0.8293, - 0.202, - 0.2836, - 0.7956, - 0.4253, - 0.2916, - 0.0417, - 0.2673, - 0.8642, - 0.5195, - 0.603, - 0.3826, - 0.3094, - 0.0258, - 0.3981, - 0.2936, - 0.017, - 0.0284, - 0.6303, - 0.1298, - 0.2505, - 0.9155, - 0.8087, - 0.6556, - 0.792, - 0.2312, - 0.9926, - 0.8701, - 0.3649, + 0.8495, + 0.1327, + 0.5175, + 0.113, + 0.6615, + 0.3047, + 0.3222, + 0.4344, + 0.5229, + 0.6776, + 0.6704, + 0.5672, + 0.9043, + 0.1053, + 0.5569, + 0.3687, + 0.3413, + 0.4421, + 0.4536, + 0.5175, + 0.0027, + 0.3319, + 0.0469, + 0.2645, + 0.6026, + 0.7549, + 0.6359, + 0.2434, + 0.2793, + 0.8463, + 0.6524, + 0.5495, + 0.3055, + 0.1273, + 0.73, + 0.9126, + 0.3533, + 0.6145, + 0.5265, 0.1205, - 0.342, - 0.2337, - 0.0929, - 0.7024, - 0.5872, - 0.9934, - 0.5032, - 0.5391, - 0.8566, - 0.6307, - 0.5152, - 0.7155, - 0.1357, - 0.707, - 0.866, - 0.5612, - 0.5663, - 0.473, - 0.0559, - 0.594, - 0.8071, - 0.0992, - 0.6689, - 0.0548, - 0.8652, - 0.7064, - 0.0422, - 0.6538, - 0.0496, - 0.7136, - 0.4191, - 0.9021, - 0.5195, - 0.3836, - 0.5472, - 0.1594, - 0.1496, - 0.5792, - 0.9196, - 0.4567, - 0.818, - 0.1962, - 0.9378, - 0.7952, - 0.1954, - 0.6766, - 0.8645, - 0.3811, - 0.3834, - 0.6989, - 0.6428, - 0.2744, - 0.9832, - 0.9558, - 0.0133, - 0.0991, - 0.3267, - 0.3179, - 0.1169, - 0.8622, - 0.1449, - 0.6899, - 0.8166, - 0.6771, - 0.7054, - 0.6028, - 0.8086, - 0.2742, - 0.8376, - 0.4022, - 0.9269, - 0.0956, - 0.8078, - 0.0141, - 0.1221, - 0.8084, - 0.4304, - 0.747, - 0.6506, - 0.5444, - 0.9239, - 0.7327, - 0.9643, - 0.1142, - 0.2865, - 0.1477, - 0.0999, - 0.2828, - 0.3839, - 0.0753, - 0.5892, - 0.5814, - 0.5566, - 0.6324, - 0.3658, - 0.8877, - 0.4359, - 0.4393, - 0.915, - 0.5119, - 0.1165, - 0.0632, - 0.845, - 0.3253, - 0.3237, - 0.8543, - 0.3534, - 0.4717, - 0.7942, - 0.2919, - 0.3364, - 0.9355, - 0.9155, - 0.1325, - 0.1416, - 0.0324, - 0.0114, - 0.5859, - 0.4832, - 0.3664, - 0.697, + 0.759, + 0.7048, + 0.2615, + 0.3407, + 0.6076, + 0.0995, + 0.3063, + 0.6485, + 0.4421, + 0.4203, + 0.2536, + 0.9134, + 0.2892, + 0.8493, + 0.7345, + 0.9932, + 0.0676, + 0.1718, + 0.3373, + 0.2834, + 0.0874, + 0.6877, + 0.0269, + 0.3882, + 0.1339, + 0.855, + 0.5363, + 0.0435, + 0.9811, + 0.7739, + 0.6614, + 0.6437, + 0.7525, + 0.4555, 0.4607, - 0.579, - 0.0936, - 0.9431, - 0.4622, - 0.9408, - 0.2768, - 0.3775, - 0.9505, - 0.7484, - 0.4609, - 0.0087, - 0.5164, - 0.4577, - 0.3548, - 0.6272, - 0.7231, - 0.2377, - 0.6361, - 0.5589, - 0.3658, - 0.0473, - 0.4792, - 0.4122, - 0.4864, - 0.9976, - 0.3315, - 0.1884, - 0.1234, - 0.0924, + 0.9539, + 0.4901, + 0.3816, + 0.6386, + 0.4983, + 0.7457, + 0.0831, + 0.9568, + 0.1156, + 0.0024, + 0.1488, + 0.6609, + 0.9101, + 0.31, + 0.4269, + 0.198, + 0.8227, + 0.4138, + 0.9415, + 0.6016, + 0.1309, + 0.3355, + 0.9306, + 0.659, + 0.9679, + 0.8036, + 0.8973, + 0.2808, + 0.697, + 0.5757, + 0.9962, + 0.8361, + 0.2852, + 0.7509, + 0.9538, + 0.074, + 0.4289, + 0.2611, + 0.3832, + 0.2985, + 0.1649, + 0.9455, + 0.605, + 0.6257, + 0.3527, + 0.8647, + 0.3524, + 0.0858, + 0.5956, + 0.4248, + 0.223, + 0.8615, + 0.7961, + 0.6213, + 0.1219, + 0.6499, + 0.0198, + 0.2354, + 0.1519, + 0.3029, + 0.9202, + 0.1846, + 0.4977, + 0.7367, + 0.3715, + 0.5095, + 0.5852, + 0.8865, + 0.0239, + 0.0712, + 0.4438, + 0.9838, + 0.6765, + 0.1222, 0.1173, - 0.9335, - 0.5878, - 0.357, - 0.3584, - 0.2991, - 0.6152, - 0.7006, - 0.5451, - 0.1564, - 0.1902, - 0.1776, - 0.3214, - 0.9236, + 0.7925, + 0.4178, + 0.8143, + 0.9259, + 0.1103, + 0.3888, + 0.6727, + 0.6233, + 0.3666, + 0.385, + 0.3852, + 0.6066, + 0.7379, + 0.9408, + 0.7615, + 0.4022, + 0.3245, + 0.0281, + 0.4839, + 0.5266, + 0.0171, + 0.8273, + 0.0353, + 0.2088, + 0.9264, + 0.8444, + 0.6192, + 0.5831, + 0.3351, + 0.2358, + 0.8046, + 0.9379, + 0.3551, + 0.0277, + 0.6078, + 0.212, + 0.3663, + 0.9334, + 0.3817, + 0.163, + 0.6081, + 0.253, + 0.4195, + 0.0841, + 0.0908, + 0.1735, + 0.3015, + 0.3408, + 0.5712, + 0.992, + 0.9133, + 0.7184, + 0.1338, + 0.9006, + 0.4468, + 0.3062, + 0.4228, + 0.9536, + 0.709, + 0.4159, + 0.8924, + 0.8923, + 0.6649, + 0.5133, 0.346, - 0.1773, - 0.8824, - 0.8057, - 0.9578, - 0.7626, - 0.2822, - 0.2852, - 0.2403, - 0.8326, - 0.7039, - 0.6844, - 0.5949, - 0.8629, - 0.4935, - 0.3918, - 0.7021, - 0.6563, - 0.0128, - 0.973, - 0.9999, - 0.756, - 0.4256, - 0.5635, - 0.6387, - 0.9091, - 0.8136, - 0.7902, - 0.5662, - 0.5735, - 0.1089, - 0.7353, - 0.4914, - 0.3436, - 0.2414, - 0.1776, - 0.1471, - 0.5746, - 0.906, - 0.5417, - 0.6857, - 0.0821, - 0.7944, - 0.2299, - 0.4727, - 0.6299, - 0.9873, - 0.365, - 0.3625, - 0.8742, - 0.5046, - 0.9323, - 0.8687, - 0.7127, - 0.6032, - 0.6836, - 0.5056, - 0.384, - 0.2268, + 0.1191, + 0.3939, + 0.1351, + 0.2682, + 0.0939, + 0.8097, + 0.2085, + 0.6547, + 0.2367, + 0.4397, + 0.6846, + 0.3155, + 0.0714, + 0.5795, + 0.4308, + 0.9266, + 0.8686, + 0.5058, + 0.16, + 0.8943, + 0.4783, + 0.8626, + 0.6431, + 0.5927, + 0.1902, + 0.5583, + 0.1998, + 0.2019, + 0.7997, + 0.0137, + 0.9297, + 0.4504, + 0.213, + 0.8761, + 0.4968, + 0.4678, + 0.0949, + 0.175, + 0.7926, + 0.1865, + 0.7775, + 0.5481, + 0.3615, + 0.0838, + 0.8989, + 0.5871, + 0.8849, + 0.0274, + 0.33, + 0.8872, + 0.1663, + 0.1684, + 0.6081, + 0.2201, + 0.7745, + 0.7383, + 0.1357, + 0.0884, + 0.9147, + 0.9233, + 0.4745, + 0.4693, + 0.6926, + 0.325, + 0.0098, + 0.5315, + 0.155, + 0.0165, + 0.1228, + 0.6364, + 0.4936, + 0.4591, 0.8376, - 0.3355, - 0.8033, - 0.4399, - 0.7237, - 0.0455, - 0.3617, - 0.9658, - 0.8776, - 0.79, - 0.0204, - 0.7842, - 0.6424, - 0.3282, - 0.2102, - 0.4798, - 0.6347, - 0.9784, - 0.0451, - 0.0533, - 0.2757, - 0.1213, - 0.0693, - 0.1851, - 0.2434, - 0.7968, - 0.9227, - 0.2801, - 0.1661, - 0.8031, - 0.8204, - 0.5028, - 0.6954, - 0.6564, - 0.6621, - 0.1083, - 0.9827, - 0.9481, - 0.7539, - 0.5787, - 0.754, - 0.9407, - 0.9781, - 0.5163, - 0.2848, - 0.0436, - 0.4046, - 0.4799, - 0.0145, - 0.7353, - 0.4314, - 0.4223, - 0.4663, - 0.6191, - 0.5489, - 0.8169, - 0.5754, - 0.1638, - 0.2407, - 0.5561, - 0.1376, - 0.9466, - 0.8674, - 0.8794, - 0.8569, - 0.306, - 0.9215, - 0.2158, - 0.1272, - 0.924, - 0.8144, - 0.76, - 0.2036, - 0.1244, - 0.9688, - 0.8507, - 0.5453, - 0.6935, - 0.8007, - 0.3882, - 0.2393, - 0.2624, - 0.43, - 0.3589, - 0.8561, - 0.8333, - 0.1323, - 0.6414, - 0.2051, - 0.4043, - 0.6759, - 0.7118, - 0.314, - 0.2017, - 0.7335, - 0.6382, - 0.8115, - 0.2592, - 0.7108, - 0.7241, - 0.2857, - 0.7984, - 0.314, - 0.5993, - 0.4496, - 0.6285, - 0.6109, - 0.1668, - 0.6036, - 0.9414, + 0.5098, + 0.3006, + 0.1986, + 0.7618, + 0.6535, + 0.6198, + 0.1768, + 0.7514, + 0.8139, + 0.6694, + 0.1904, + 0.3338, + 0.4439, + 0.8087, + 0.615, + 0.396, + 0.0321, + 0.7233, + 0.8417, + 0.6772, + 0.9921, + 0.9585, + 0.974, + 0.8865, + 0.1667, + 0.3504, + 0.6359, + 0.5458, + 0.7302, + 0.6398, + 0.5973, + 0.2292, + 0.5581, + 0.1498, + 0.8745, + 0.7069, + 0.5006, + 0.6214, + 0.2273, + 0.0293, + 0.0254, + 0.5454, + 0.1189, + 0.8897, + 0.3614, + 0.8181, + 0.0319, + 0.5279, + 0.7258, + 0.8725, + 0.6792, + 0.7214, + 0.326, + 0.1844, + 0.0336, + 0.294, + 0.0626, + 0.5248, + 0.2385, 0.5906, - 0.0523, - 0.6775, - 0.4257, - 0.972, - 0.8694, - 0.5477, - 0.5329, - 0.6015, - 0.0419, - 0.6005, - 0.6357, - 0.4866, - 0.6176, - 0.3586, - 0.1437, - 0.604, - 0.3773, - 0.3321, - 0.5273, - 0.4278, - 0.8083, - 0.602, - 0.1354, - 0.8057, - 0.6518, - 0.2494, - 0.5061, - 0.5046, - 0.9257, - 0.9183, - 0.3426, - 0.3835, - 0.3293, - 0.4006, - 0.4918, - 0.8085, - 0.7419, - 0.6091, - 0.1069, - 0.01, - 0.4792, - 0.7671, - 0.4973, - 0.4197, - 0.593, - 0.8573, - 0.9619, - 0.5115, - 0.4922, - 0.6407, - 0.7338, - 0.822, - 0.9791, - 0.6811, - 0.6394, - 0.7445, - 0.7026, - 0.112, - 0.4742, - 0.8035, - 0.6557, - 0.1337, - 0.3117, - 0.3063, - 0.9939, - 0.0347, - 0.6098, - 0.2064, - 0.0397, - 0.889, - 0.0204, - 0.847, - 0.9685, - 0.7025, - 0.5644, - 0.4862, - 0.2199, - 0.1735, - 0.8226, - 0.5622, - 0.9808, - 0.453, - 0.0078, - 0.269, - 0.9936, - 0.6762, - 0.0733, - 0.8979, - 0.0833, - 0.8885, - 0.9843, - 0.6896, - 0.1953, - 0.3768, - 0.3962, + 0.1257, + 0.0753, + 0.4883, + 0.3299, + 0.5823, + 0.3642, + 0.0545, + 0.5908, + 0.5981, + 0.0887, + 0.1457, + 0.5352, + 0.6095, + 0.1497, + 0.9885, + 0.8959, + 0.7753, + 0.888, + 0.8293, + 0.8986, + 0.9031, + 0.5697, + 0.9688, + 0.7432, + 0.3708, + 0.1624, + 0.9413, + 0.1076, + 0.4863, + 0.1085, + 0.1785, + 0.5963, + 0.5328, + 0.0432, + 0.9167, + 0.6128, + 0.0268, + 0.2894, + 0.2473, + 0.5621, + 0.7995, + 0.4348, + 0.8269, + 0.5737, + 0.1212, + 0.3279, + 0.5582, + 0.2368, + 0.9099, + 0.1582, + 0.2399, + 0.3593, + 0.3334, + 0.3264, + 0.5194, + 0.7646, + 0.7066, + 0.9094, + 0.0788, + 0.04, + 0.6123, + 0.8779, + 0.7494, + 0.6915, + 0.1818, + 0.4833, + 0.1193, 0.3972, - 0.7227, - 0.2195, - 0.2417, - 0.2712, - 0.3352, - 0.7784, - 0.1962, - 0.9546, - 0.8273, - 0.8632, - 0.8425, - 0.9237, - 0.8228, - 0.0921, - 0.4961, - 0.5752, - 0.3346, - 0.792, - 0.7843, - 0.0431, - 0.7343, - 0.6408, - 0.4754, - 0.9663, - 0.825, - 0.4845, - 0.6643, - 0.2812, - 0.691, - 0.6138, - 0.1153, - 0.659, - 0.8692, - 0.6239, - 0.719, - 0.1064, + 0.1987, + 0.2515, + 0.1104, + 0.329, + 0.3515, 0.1535, - 0.814, - 0.169, - 0.1737, - 0.877, - 0.0486, - 0.7733, - 0.6258, - 0.624, - 0.6248, - 0.716, - 0.1036, - 0.837, + 0.2722, + 0.7994, + 0.0729, + 0.9796, + 0.36, + 0.5566, + 0.9068, + 0.552, + 0.4093, + 0.9352, + 0.6619, + 0.9046, + 0.1662, + 0.0716, + 0.1604, + 0.831, + 0.6047, + 0.5514, + 0.7995, + 0.6992, + 0.0337, + 0.8455, + 0.9141, + 0.0536, + 0.2371, + 0.3092, + 0.2431, + 0.1454, + 0.1643, + 0.6964, + 0.2696, + 0.5836, + 0.7908, + 0.9888, + 0.1773, + 0.3038, + 0.9682, + 0.2708, + 0.14, + 0.6447, + 0.3086, + 0.8553, + 0.0011, + 0.327, + 0.9468, + 0.2626, + 0.2457, + 0.8212, + 0.6494, + 0.524, + 0.8385, + 0.4467, + 0.5052, + 0.4403, + 0.0123, + 0.201, + 0.8081, + 0.8413, + 0.7728, + 0.2551, + 0.8037, + 0.3069, + 0.1215, + 0.4741, + 0.7709, + 0.7742, + 0.8799, + 0.4515, + 0.998, + 0.7127, 0.1298, - 0.7216, - 0.5741, - 0.9149, - 0.3257, - 0.7624, - 0.1112, - 0.6399, - 0.607, - 0.2857, - 0.8516, - 0.4269, - 0.4963, - 0.5318, - 0.6426, - 0.0436, - 0.9874, - 0.5126, - 0.1496, - 0.5286, - 0.4234, - 0.9596, - 0.2528, - 0.1762, - 0.3153, - 0.5443, - 0.4267, - 0.4938, - 0.1885, - 0.0933, - 0.1811, - 0.1523, - 0.4158, - 0.3003, - 0.4077, - 0.0289, - 0.1415, - 0.3954, - 0.4806, - 0.3637, + 0.4355, + 0.9694, + 0.4944, + 0.5167, + 0.2156, + 0.4738, + 0.2281, + 0.4291, + 0.7747, + 0.3784, + 0.125, + 0.4078, + 0.9735, + 0.5441, + 0.1696, + 0.4047, + 0.4518, + 0.5298, + 0.5365, + 0.2333, + 0.44, + 0.9323, + 0.6693, + 0.6891, + 0.3421, + 0.1085, + 0.684, + 0.3134, + 0.3117, + 0.1419, + 0.1087, + 0.3219, + 0.424, + 0.3901, + 0.3935, + 0.5378, + 0.4168, + 0.9833, + 0.0741, + 0.3852, + 0.2805, + 0.9015, + 0.6981, + 0.7438, + 0.3789, + 0.3769, + 0.437, + 0.6892, + 0.5479, + 0.2011, + 0.0094, + 0.3542, + 0.1114, + 0.9777, + 0.7534, + 0.6072, + 0.2673, + 0.146, + 0.9986, + 0.479, + 0.6533, + 0.6826, + 0.6507, + 0.9972, + 0.4309, + 0.9135, + 0.1829, + 0.6308, + 0.7728, + 0.3877, + 0.4328, + 0.9888, + 0.5916, + 0.2826, + 0.0145, + 0.5076, + 0.1746, + 0.0836, + 0.8258, + 0.1626, + 0.8975, + 0.5637, + 0.4898, + 0.8585, + 0.272, + 0.6988, + 0.7537, + 0.6196, + 0.2848, + 0.8265, + 0.717, + 0.8667, + 0.3959, + 0.3703, + 0.3233, + 0.2094, + 0.6687, + 0.9635, + 0.1416, + 0.2629, + 0.0173, + 0.0746, + 0.4758, + 0.2285, + 0.0427, + 0.6155, + 0.4515, + 0.2212, + 0.1993, + 0.619, + 0.4934, + 0.5971, + 0.2463, + 0.1726, + 0.1073, + 0.714, + 0.4204, + 0.076, + 0.5415, + 0.8187, + 0.6565, + 0.0808, + 0.0068, + 0.8946, + 0.1416, + 0.3824, + 0.157, + 0.3344, + 0.6638, + 0.6437, + 0.7341, + 0.5852, + 0.9766, + 0.7702, + 0.1931, + 0.3754, + 0.9196, + 0.5172, + 0.8366, + 0.7149, + 0.8711, + 0.0271, + 0.2905, + 0.4041, + 0.412, + 0.7529, + 0.2656, + 0.6843, + 0.4006, + 0.6658, + 0.1178, + 0.8917, + 0.175, + 0.9816, + 0.4336, + 0.9139, + 0.4246, + 0.1495, + 0.49, + 0.641, + 0.1819, + 0.618, + 0.3091, + 0.4379, + 0.1387, + 0.5842, + 0.6553, + 0.8201, 0.2065, - 0.0853, - 0.4876, - 0.3895, + 0.0784, + 0.5505, + 0.1948, + 0.7699, + 0.0068, + 0.7891, + 0.9851, + 0.222, + 0.1727, + 0.8764, + 0.4221, + 0.1421, + 0.5627, + 0.9089, + 0.7704, + 0.4109, + 0.8144, + 0.804, + 0.4028, + 0.5971, + 0.6842, + 0.7916, + 0.8573, + 0.1247, + 0.9325, + 0.779, + 0.4499, + 0.182, + 0.439, + 0.0038, + 0.7063, + 0.9865, + 0.1165, + 0.5781, + 0.3205, + 0.9872, + 0.4792, + 0.3532, + 0.7663, + 0.1185, + 0.1335, + 0.5923, + 0.075, + 0.1822, + 0.587, + 0.4126, + 0.9689, + 0.3395, + 0.9657, + 0.1674, + 0.7363, + 0.7038, + 0.6381, + 0.1921, + 0.0812, + 0.29, + 0.9314, + 0.5725, + 0.1637, + 0.5754, + 0.4342, + 0.036, + 0.0064, + 0.951, 0.6097, - 0.2423, - 0.7641, - 0.3167, - 0.7905, - 0.6521, - 0.2373, - 0.9257, - 0.0343, - 0.4683, - 0.8181, - 0.0611, - 0.8914, - 0.2819, - 0.9513, - 0.3075, - 0.3637, - 0.3771, - 0.5346, - 0.0612, - 0.9544, - 0.833, - 0.2414, + 0.1196, 0.7419, - 0.5458, - 0.7989, - 0.4983, - 0.5149, - 0.0025, - 0.062, - 0.236, - 0.1607, - 0.3105, - 0.4119, - 0.7168, - 0.962, - 0.3549, - 0.769, - 0.6528, - 0.9922, - 0.4063, - 0.8298, - 0.6042, - 0.3535, - 0.4706, - 0.3725, - 0.5149, - 0.9168, - 0.6254, - 0.5856, - 0.8997, - 0.6243, - 0.9589, - 0.646, - 0.3037, - 0.1842, - 0.8434, - 0.2055, - 0.7922, - 0.8212, - 0.2234, - 0.7408, - 0.6741, - 0.5856, - 0.4342, - 0.301, - 0.568, - 0.8431, - 0.8688, - 0.5856, - 0.5363, - 0.976, - 0.5435, - 0.2217, - 0.7597, - 0.1957, - 0.2766, - 0.3705, - 0.5858, - 0.6939, - 0.636, - 0.1475, - 0.243, - 0.9378, - 0.1081, - 0.5552, - 0.7541, - 0.4379, - 0.082, - 0.8102, - 0.5274, - 0.068, - 0.1555, - 0.0626, - 0.1796, - 0.7885, - 0.2552, - 0.0957, - 0.5273, - 0.1241, - 0.0728, - 0.1622, - 0.8758, - 0.9418, - 0.2601, - 0.9398, - 0.0311, - 0.3993, - 0.2793, - 0.6314, - 0.5719, - 0.7037, - 0.522, - 0.19, - 0.4744, - 0.0621, - 0.8704, - 0.8763, - 0.339, - 0.5907, - 0.4685, - 0.4475, - 0.2915, - 0.476, - 0.6817, - 0.3373, - 0.3419, - 0.7016, - 0.6028, - 0.8235, - 0.285, - 0.6352, - 0.0998, - 0.8159, - 0.5816, - 0.5474, - 0.8509, - 0.7227, - 0.2625, - 0.2115, - 0.8765, - 0.5289, - 0.6805, - 0.2607, - 0.1227, - 0.6452, - 0.7152, - 0.6581, - 0.6223, - 0.3398, - 0.5212, - 0.3571, - 0.7334, - 0.3846, - 0.1275, - 0.477, - 0.0384, - 0.9514, - 0.3477, - 0.7705, - 0.5066, - 0.2248, - 0.23, - 0.2343, - 0.9322, - 0.4377, - 0.2708, - 0.5012, - 0.8709, - 0.2669, - 0.9155, - 0.8479, - 0.3418, - 0.6577, - 0.6201, - 0.688, - 0.4846, - 0.1142, - 0.5926, - 0.3116, - 0.6832, - 0.4111, - 0.7837, - 0.738, - 0.3432, - 0.6958, - 0.498, - 0.1075, - 0.5856, - 0.2214, - 0.0269, - 0.7282, - 0.2575, - 0.4943, - 0.9861, - 0.1476, - 0.1753, - 0.71, - 0.8167, - 0.3396, - 0.1326, - 0.931, - 0.6531, - 0.4792, - 0.0114, - 0.0539, - 0.3517, - 0.2748, - 0.5001, - 0.3002, - 0.7222, - 0.4436, - 0.1953, - 0.394, - 0.3299, - 0.7032, - 0.308, - 0.9442, - 0.5556, - 0.6019, - 0.7789, - 0.1336, - 0.5149, - 0.66, - 0.3399, - 0.6512, - 0.2346, - 0.6842, - 0.6097, - 0.3435, - 0.3399, - 0.6952, - 0.8141, - 0.0345, - 0.306, - 0.6643, - 0.0015, - 0.1301, - 0.3879, - 0.2732, - 0.2534, - 0.1529, - 0.8663, - 0.6879, - 0.514, - 0.2486, - 0.0338, - 0.712, - 0.7723, - 0.2034, - 0.6512, - 0.268, - 0.2088, - 0.2639, - 0.0225, - 0.5171, - 0.6413, - 0.5207, - 0.5982, - 0.8368, - 0.5388, - 0.4556, - 0.2484, - 0.3614, - 0.1322, - 0.8282, - 0.6605, - 0.0126, - 0.8688, - 0.3074, - 0.8104, - 0.3442, - 0.856, - 0.9746, - 0.6941, - 0.4297, - 0.9217, - 0.5967, - 0.5465, - 0.8035, - 0.2097, - 0.8329, - 0.5406, - 0.5825, - 0.4582, - 0.8033, - 0.9615, - 0.337, - 0.8636, - 0.4485, - 0.8056, - 0.3713, - 0.8349, - 0.3738, - 0.5721, - 0.0201, - 0.5238, - 0.2626, - 0.4638, - 0.6179, - 0.5989, - 0.1357, - 0.4345, - 0.2323, - 0.4097, - 0.0533, - 0.8931, - 0.8183, - 0.5882, - 0.3706, - 0.4168, - 0.8221, - 0.8798, - 0.1067, - 0.113, - 0.2987, - 0.4302, - 0.4231, - 0.0468, - 0.8608, - 0.071, - 0.1528, - 0.7872, - 0.5912, - 0.8278, - 0.9481, - 0.0149, - 0.4132, - 0.0205, - 0.4638, - 0.7672, - 0.286, - 0.2156, - 0.955, - 0.1055, - 0.0784, - 0.215, - 0.3032, - 0.2384, - 0.1647, - 0.6197, - 0.7573, - 0.1236, - 0.9641, - 0.486, - 0.3705, - 0.2221, - 0.5332, - 0.2268, - 0.542, - 0.2522, - 0.6015, - 0.0598, - 0.5274, - 0.3344, - 0.1023, - 0.3936, - 0.7491, - 0.7238, - 0.7974, + 0.3778, + 0.589, + 0.1823, + 0.9811, + 0.7481, + 0.7585, + 0.1091, + 0.0432, + 0.1561, + 0.3033, + 0.9111, + 0.8165, + 0.1853, + 0.4182, + 0.9793, + 0.9087, + 0.0199, + 0.5285, + 0.0561, + 0.8302, + 0.1818, + 0.411, + 0.8376, + 0.9407, 0.5172, - 0.6063, - 0.6162, - 0.3844, - 0.1043, - 0.4912, - 0.0143, - 0.4484, - 0.6742, - 0.9358, - 0.541, - 0.1894, - 0.3708, - 0.5925, - 0.1626, - 0.5294, - 0.6202, - 0.4375, - 0.6326, - 0.7251, - 0.5881, - 0.9983, - 0.2545, + 0.5607, + 0.7766, + 0.1003, + 0.9335, + 0.3791, + 0.2783, + 0.6564, + 0.9619, + 0.0843, + 0.5954, + 0.686, + 0.8016, + 0.9034, + 0.1711, + 0.3332, + 0.4311, + 0.0898, + 0.792, + 0.8493, + 0.9628, + 0.5184, + 0.7755, + 0.6995, + 0.9995, + 0.2539, + 0.6183, + 0.9674, + 0.8897, + 0.803, + 0.7361, + 0.9315, + 0.0534, + 0.6055, + 0.9743, + 0.6427, + 0.2137, + 0.5578, + 0.9591, + 0.2083, + 0.9989, + 0.24, + 0.4082, + 0.357, + 0.6303, + 0.7933, + 0.8805, + 0.869, + 0.3131, + 0.3966, + 0.5878, + 0.8234, + 0.1275, + 0.0203, + 0.0864, + 0.9016, + 0.831, + 0.7514, + 0.4474, + 0.0473, + 0.3074, + 0.0007, + 0.632, + 0.735, + 0.8952, + 0.3064, + 0.3075, + 0.718, + 0.9992, + 0.7617, 0.422, - 0.0531, - 0.2039, - 0.0804, - 0.8013, - 0.0882, - 0.7846, - 0.0277, - 0.4523, - 0.5449, - 0.9859, - 0.2056, - 0.8836, - 0.4609, - 0.081, - 0.842, - 0.3396, - 0.5518, - 0.2657, - 0.5478, - 0.1248, - 0.9277, - 0.586, - 0.9667, - 0.6729, - 0.4369, - 0.6099, - 0.3208, - 0.9964, - 0.4746, - 0.7448, - 0.2764, - 0.381, - 0.082, - 0.3759, - 0.1544, - 0.5137, - 0.4628, - 0.8203, - 0.2503, - 0.0934, - 0.9366, - 0.8552, - 0.0405, - 0.646, - 0.6226, - 0.9758, - 0.5005, - 0.3744, - 0.1499, - 0.8949, - 0.6115, - 0.358, - 0.7685, - 0.0848, - 0.8183, - 0.5737, - 0.2602, - 0.236, - 0.1252, - 0.31, - 0.757, - 0.7443, - 0.1887, - 0.6964, - 0.9595, - 0.4951, - 0.8919, - 0.666, - 0.5509, - 0.0098, - 0.9422, - 0.5881, - 0.9352, - 0.9734, - 0.7396, - 0.6513, - 0.132, - 0.6874, - 0.9986, - 0.5675, - 0.4108, - 0.4017, - 0.6847, - 0.6815, - 0.9467, - 0.1617, + 0.7066, + 0.4877, + 0.6746, + 0.8712, + 0.8902, + 0.7941, + 0.1501, + 0.6711, + 0.0072, + 0.1219, + 0.8488, + 0.2887, + 0.3663, + 0.9713, + 0.074, + 0.5787, + 0.9501, + 0.5972, + 0.498, + 0.957, + 0.7974, + 0.0834, + 0.8428, + 0.7096, + 0.9131, + 0.6854, + 0.6449, + 0.1647, + 0.7376, + 0.0164, + 0.9697, + 0.9978, + 0.8695, + 0.2771, + 0.4588, + 0.8282, + 0.3346, + 0.493, + 0.5476, + 0.7514, + 0.1632, + 0.6385, + 0.6518, + 0.0853, + 0.7853, + 0.6705, + 0.63, + 0.0601, + 0.4043, + 0.3616, 0.8419, - 0.8344, - 0.295, - 0.8443, - 0.5628, - 0.9393, - 0.7785, - 0.3855, - 0.2582, - 0.4633, - 0.6234, - 0.7046, - 0.1074, - 0.3522, - 0.1817, - 0.7867, - 0.7716, - 0.3434, - 0.4787, - 0.4506, - 0.8986, - 0.501, - 0.3697, - 0.6525, - 0.9386, - 0.4, - 0.3044, - 0.7731, - 0.8241, - 0.5707, - 0.5674, - 0.5904, - 0.8559, - 0.5009, - 0.6555, - 0.2625, - 0.1812, - 0.7748, - 0.7035, - 0.4034, - 0.4028, - 0.8226, - 0.6866, - 0.9483, - 0.7743, - 0.9961, - 0.3783, - 0.0831, - 0.1877, - 0.2967, - 0.6305, - 0.2701, - 0.6806, - 0.2314, - 0.9049, - 0.4567, - 0.0938, - 0.792, - 0.2521, - 0.813, - 0.8689, - 0.1973, - 0.7605, - 0.784, - 0.1445, - 0.0218, - 0.3165, - 0.0131, - 0.2762, - 0.7897, - 0.6781, - 0.7594, - 0.68, - 0.8437, - 0.0609, - 0.3447, - 0.8079, - 0.4582, - 0.668, - 0.0373, - 0.1945, - 0.7513, - 0.8292, - 0.7587, - 0.2941, - 0.5786, - 0.476, - 0.5256, - 0.1812, - 0.2307, - 0.2595, - 0.1664, - 0.9826, - 0.1692, - 0.496, - 0.7153, - 0.7368, - 0.4947, - 0.1063, - 0.6141, - 0.5755, - 0.6001, - 0.2201, - 0.2563, - 0.801, - 0.7525, - 0.4701, - 0.0865, - 0.5806, - 0.3466, - 0.3358, - 0.673, - 0.8192, - 0.3892, - 0.7557, - 0.4903, - 0.7654, - 0.493, - 0.8379, - 0.7537, - 0.2723, - 0.9053, - 0.3155, - 0.1778, - 0.2012, - 0.1391, - 0.9461, - 0.4604, - 0.9958, - 0.4219, - 0.9112, - 0.3831, - 0.8889, - 0.3649, - 0.416, - 0.1069, - 0.9142, - 0.3294, - 0.9175, - 0.5653, - 0.4119, - 0.1965, - 0.7444, - 0.0138, - 0.4394, - 0.0704, - 0.1253, - 0.3093, - 0.4326, - 0.7841, + 0.1188, + 0.0627, + 0.3386, + 0.2871, + 0.233, + 0.2617, + 0.2391, + 0.7461, + 0.8969, + 0.8808, + 0.6999, + 0.6133, + 0.6821, + 0.9072, + 0.3907, + 0.2562, + 0.2103, 0.2684, - 0.9713, - 0.9735, - 0.2897, - 0.3733, - 0.6205, - 0.8158, - 0.8989, - 0.9836, - 0.7471, - 0.1294, - 0.8026, - 0.6691, - 0.8439, - 0.2882, - 0.0673, - 0.4141, - 0.3665, - 0.2536, - 0.9125, - 0.601, - 0.7052, - 0.4114, - 0.1234, - 0.0044, - 0.6124, - 0.8143, - 0.7109, - 0.5504, - 0.348, - 0.7183, - 0.3787, - 0.7209, - 0.9895, - 0.4854, - 0.6153, - 0.6722, - 0.4589, - 0.8439, - 0.067, - 0.5877, - 0.7468, - 0.6619, - 0.5015, - 0.0189, + 0.8209, + 0.9785, + 0.5295, 0.6197, - 0.9388, - 0.773, - 0.3482, - 0.7201, - 0.7253, - 0.4923, - 0.9192, - 0.3523, - 0.5885, - 0.5735, - 0.8702, - 0.4077, - 0.5014, - 0.5964, - 0.2212, - 0.1598, - 0.8574, - 0.2889, - 0.9226, - 0.7597, - 0.7039, - 0.6203, - 0.9349, - 0.9423, - 0.0239, - 0.5828, - 0.4641, - 0.2998, - 0.983, - 0.2542, - 0.8933, - 0.0202, - 0.6057, - 0.4318, - 0.8167, - 0.9593, - 0.4818, - 0.8895, - 0.1445, - 0.0744, - 0.6519, - 0.755, - 0.821, - 0.2025, + 0.4437, + 0.0513, + 0.2043, + 0.4985, + 0.6397, + 0.7692, + 0.4385, + 0.6022, + 0.4107, + 0.8903, + 0.3513, + 0.1308, + 0.4109, + 0.5583, + 0.4755, + 0.795, + 0.4883, + 0.1925, + 0.1555, + 0.5375, + 0.3586, + 0.2651, + 0.3552, + 0.7455, + 0.7001, + 0.9495, + 0.731, + 0.9297, + 0.455, + 0.4386, + 0.1038, + 0.6104, + 0.2647, + 0.6456, + 0.1453, + 0.2381, + 0.9524, + 0.2085, + 0.8376, + 0.8303, + 0.8272, + 0.0074, + 0.1371, + 0.6089, + 0.3013, + 0.178, + 0.2526, + 0.3187, + 0.6033, + 0.3046, + 0.6643, + 0.412, + 0.0395, + 0.0738, + 0.0039, + 0.2754, + 0.5241, + 0.4143, + 0.3, + 0.7346, + 0.6926, + 0.9398, + 0.3889, + 0.4594, + 0.9662, + 0.8181, + 0.4883, + 0.1196, + 0.4819, + 0.8591, + 0.4281, + 0.6368, + 0.9495, + 0.907, + 0.2417, + 0.595, + 0.3275, + 0.5448, + 0.4435, + 0.9741, + 0.2106, + 0.9527, + 0.2659, + 0.0753, + 0.7565, + 0.0036, + 0.1094, + 0.3788, + 0.3798, + 0.0257, + 0.8348, + 0.6707, + 0.0286, + 0.3908, + 0.3377, + 0.256, + 0.1226, + 0.871, + 0.4498, + 0.4502, + 0.0376, + 0.5381, + 0.474, + 0.3746, + 0.4197, + 0.0039, + 0.3388, + 0.7588, + 0.2359, + 0.9846, + 0.0098, + 0.1407, + 0.918, + 0.1166, + 0.8219, + 0.8632, + 0.1883, + 0.7853, 0.8657, - 0.4806, - 0.7824, - 0.9615, - 0.404, - 0.8938, - 0.6807, - 0.5701, - 0.7975, - 0.8059, - 0.7991, + 0.5312, + 0.8334, + 0.5891, + 0.6958, + 0.4233, + 0.6664, + 0.4206, + 0.4826, + 0.2243, + 0.2559, + 0.7057, + 0.4671, + 0.9736, + 0.2607, + 0.9737, + 0.5636, + 0.8314, + 0.4349, + 0.8978, + 0.7703, + 0.1895, + 0.5616, + 0.7186, + 0.2166, + 0.3615, + 0.7642, + 0.1683, + 0.733, + 0.5028, + 0.0914, + 0.1162, + 0.0665, + 0.7846, + 0.8472, + 0.8753, + 0.7558, + 0.1029, 0.0701, - 0.4848, - 0.1385, - 0.3024, - 0.4885, - 0.7997, - 0.9528, - 0.5319, - 0.6654, - 0.9926, - 0.1439, - 0.2241, - 0.4047, - 0.4585, - 0.6375, - 0.3987, - 0.48, - 0.6933, - 0.3507, - 0.418, - 0.1779, - 0.8049, - 0.1985, - 0.6547, - 0.1748, - 0.0982, - 0.7252, - 0.6581, - 0.7308, - 0.8226, - 0.692, - 0.3147, - 0.9855, - 0.5187, - 0.54, - 0.1148, - 0.2194, - 0.8795, - 0.4824, - 0.4346, - 0.5185, - 0.3597, - 0.2942, - 0.9849, - 0.2904, - 0.3997, - 0.7357, - 0.6904, - 0.4194, - 0.9749, - 0.3036, - 0.5359, - 0.801, - 0.5304, - 0.1009, - 0.1137, - 0.1862, - 0.0818, - 0.4619, - 0.9375, - 0.5066, + 0.3926, + 0.0446, + 0.1549, + 0.0486, + 0.6066, + 0.01, + 0.4325, + 0.0697, + 0.2457, + 0.8329, + 0.405, + 0.4612, + 0.8569, 0.7376, - 0.841, - 0.5047, - 0.7702, - 0.7164, - 0.524, - 0.2199, - 0.9143, - 0.9355, - 0.5536, - 0.8152, - 0.4047, - 0.0793, - 0.2649, - 0.6909, - 0.8979, - 0.6214, - 0.1179, - 0.2762, - 0.1212, - 0.476, - 0.3348, - 0.9686, - 0.0546, - 0.5621, - 0.8807, - 0.5002, - 0.6772, - 0.338, - 0.3759, - 0.3562, - 0.638, - 0.4292, - 0.2697, - 0.4145, - 0.6757, - 0.1672, - 0.0456, - 0.3956, - 0.7652, - 0.8134, - 0.5655, - 0.4866, - 0.4435, - 0.3566, - 0.4811, - 0.0388, - 0.7055, - 0.6139, - 0.1968, - 0.6973, - 0.9985, - 0.6092, - 0.3365, - 0.5152, - 0.124, - 0.3424, - 0.0209, - 0.9738, - 0.7001, - 0.06, - 0.4997, - 0.9507, - 0.7997, - 0.4899, - 0.1406, - 0.741, - 0.1857, - 0.8113, - 0.1806, - 0.2991, - 0.9027, - 0.3554, - 0.137, - 0.8379, - 0.2426, - 0.6838, - 0.8058, - 0.399, - 0.6795, - 0.3128, - 0.4678, - 0.649, - 0.2727, - 0.4263, - 0.114, - 0.3211, - 0.5777, - 0.4672, - 0.7625, - 0.9659, - 0.7849, - 0.2252, - 0.2579, - 0.1839, - 0.6291, - 0.2063, - 0.5886, - 0.618, - 0.7591, - 0.9873, - 0.7952, - 0.0434, - 0.9475, - 0.1736, - 0.3665, - 0.8671, - 0.6099, - 0.8262, - 0.1729, - 0.02, - 0.1198, - 0.5511, - 0.0692, - 0.5426, - 0.5531, - 0.127, - 0.6801, - 0.1744, - 0.348, - 0.9526, - 0.3855, - 0.4971, - 0.7437, - 0.2316, - 0.1142, - 0.894, - 0.6474, - 0.6112, - 0.5105, - 0.3889, - 0.4672, - 0.9269, - 0.9024, - 0.0553, - 0.5975, - 0.8452, - 0.6799, - 0.798, - 0.62, - 0.9997, - 0.1334, - 0.8531, - 0.8246, - 0.6185, - 0.6029, - 0.8206, - 0.3687, - 0.2068, - 0.4332, - 0.8136, - 0.0668, - 0.2376, - 0.5558, - 0.9787, - 0.5976, - 0.9229, - 0.7731, - 0.4362, - 0.3132, - 0.0166, - 0.7172, - 0.1367, - 0.3586, - 0.9563, - 0.9926, - 0.0298, - 0.7279, - 0.2431, - 0.9939, - 0.421, - 0.5103, - 0.8554, - 0.7726, - 0.144, - 0.3567, - 0.1453, - 0.7297, - 0.6371, - 0.5222, - 0.9606, - 0.4859, - 0.2325, - 0.3581, - 0.532, - 0.85, - 0.0018, - 0.8142, - 0.8558, - 0.5656, - 0.0669, - 0.6361, - 0.7094, - 0.6393, - 0.9819, - 0.5597, - 0.1194, - 0.7015, - 0.4651, - 0.6084, - 0.161, - 0.9753, - 0.6765, - 0.0473, - 0.8232, - 0.2586, - 0.6421, - 0.3345, - 0.0733, - 0.8419, - 0.2767, - 0.9467, - 0.8769, - 0.2758, - 0.9653, - 0.8281, - 0.3544, - 0.103, - 0.8024, - 0.8915, - 0.2867, - 0.7688, - 0.6829, - 0.2309, - 0.1226, - 0.1658, - 0.975, - 0.429, - 0.3409, - 0.2857, - 0.6911, - 0.6738, - 0.7147, - 0.2167, - 0.7255, - 0.7472, - 0.2393, - 0.0173, - 0.7829, - 0.2232, - 0.2845, - 0.615, - 0.5044, - 0.6121, - 0.2912, - 0.6673, - 0.5769, - 0.2828, - 0.2918, - 0.9808, - 0.3494, - 0.5731, - 0.6013, - 0.7371, - 0.5398, - 0.54, - 0.4105, - 0.2622, - 0.1306, - 0.316, - 0.346, - 0.8576, - 0.8424, - 0.7847, - 0.0022, - 0.7723, - 0.4866, - 0.8256, - 0.6488, - 0.6712, - 0.7596, - 0.9815, - 0.5096, - 0.491, - 0.8874, - 0.7566, - 0.883, - 0.586, - 0.3729, - 0.34, - 0.8264, - 0.6554, - 0.0033, - 0.0372, - 0.5268, - 0.5513, - 0.5211, - 0.5029, - 0.2018, - 0.5831, - 0.7675, - 0.3651, - 0.8494, - 0.3461, - 0.0121, - 0.6268, - 0.3554, - 0.7955, - 0.633, - 0.0814, - 0.2488, - 0.2559, - 0.958, - 0.9595, - 0.4482, - 0.8411, - 0.0353, - 0.4494, - 0.2614, - 0.1687, - 0.5824, - 0.5393, - 0.5491, - 0.92, - 0.492, - 0.2089, - 0.3675, - 0.4306, + 0.52, + 0.3939, + 0.0705, + 0.8661, + 0.6543, + 0.8157, + 0.6812, + 0.9828, + 0.7135, + 0.6194, + 0.9353, + 0.3393, + 0.6832, + 0.6425, + 0.1182, + 0.7905, + 0.5477, 0.2959, - 0.8866, - 0.1124, - 0.5443, - 0.4992, - 0.8378, - 0.3795, - 0.3683, - 0.8826, - 0.1016, - 0.0894, - 0.4991, - 0.6792, - 0.9486, - 0.5443, - 0.5178, - 0.973, - 0.0597, - 0.3124, - 0.6563, - 0.1036, - 0.5798, - 0.5629, - 0.8468, - 0.7993, - 0.5389, - 0.5914, - 0.4528, - 0.6737, - 0.1267, - 0.5909, - 0.561, - 0.9241, - 0.977, - 0.3642, - 0.163, - 0.5114, - 0.9784, - 0.0699, - 0.0943, + 0.6703, + 0.0444, + 0.7436, + 0.992, + 0.1846, + 0.8247, + 0.3655, + 0.6062, + 0.0819, + 0.0441, + 0.0901, + 0.6529, + 0.2968, + 0.2599, + 0.2946, + 0.2715, + 0.8493, + 0.5891, + 0.4013, + 0.0631, + 0.6927, + 0.1855, + 0.6096, + 0.938, + 0.2927, + 0.3665, + 0.8552, + 0.4898, + 0.5549, + 0.8449, + 0.1282, + 0.7464, + 0.9527, + 0.9677, + 0.4477, + 0.2979, + 0.5842, + 0.9028, + 0.3649, + 0.7666, 0.7471, - 0.1455, - 0.5359, - 0.0001, - 0.1057, - 0.7755, - 0.8404, - 0.3672, - 0.7345, - 0.2906, - 0.157, - 0.7965, - 0.9116, - 0.7062, - 0.5853, - 0.609, - 0.8938, - 0.9729, - 0.106, - 0.535, - 0.7214, - 0.3592, - 0.9432, - 0.4705, - 0.536, - 0.1596, - 0.9325, - 0.3222, - 0.0569, - 0.1633, - 0.8966, - 0.0688, - 0.0306, - 0.8528, - 0.5507, - 0.4254, - 0.2972, - 0.4881, - 0.826, - 0.9692, - 0.722, - 0.1357, - 0.6557, - 0.8241, - 0.8508, - 0.3582, - 0.9271, - 0.1959, - 0.2993, - 0.2329, - 0.2957, - 0.6007, - 0.7803, - 0.5522, - 0.4146, - 0.179, - 0.6219, - 0.1761, - 0.3297, - 0.0639, - 0.2582, - 0.2326, - 0.3345, - 0.031, - 0.5464, - 0.184, - 0.8104, - 0.6112, - 0.7598, - 0.1504, - 0.4164, - 0.2786, - 0.1775, - 0.893, - 0.3616, - 0.5452, - 0.4219, - 0.6455, - 0.4275, - 0.6251, - 0.2914, - 0.1723, - 0.2657, - 0.1548, - 0.4455, - 0.8496, - 0.7159, - 0.4203, - 0.6023, - 0.6416, - 0.5162, - 0.2961, - 0.8384, - 0.6152, - 0.8397, - 0.3797, - 0.315, - 0.4114, - 0.6573, - 0.0707, - 0.3365, - 0.6941, - 0.731, - 0.154, - 0.2613, - 0.1211, - 0.0244, - 0.0557, - 0.4942, - 0.5073, - 0.5448, - 0.4571, - 0.1671, - 0.9916, - 0.2067, - 0.4233, - 0.7542, - 0.7366, - 0.5586, - 0.3477, - 0.7409, - 0.4489, - 0.7978, - 0.388, - 0.1552, - 0.1046, - 0.6896, - 0.6565, - 0.5541, - 0.9926, - 0.0168, - 0.564, - 0.6446, - 0.3415, - 0.6767, - 0.8629, - 0.055, - 0.8642, - 0.8744, - 0.4955, - 0.9808, - 0.9534, - 0.7219, - 0.9547, - 0.3515, - 0.2011, - 0.3674, - 0.6392, - 0.2437, - 0.9618, - 0.8405, - 0.5964, - 0.3853, - 0.9572, - 0.0624, - 0.3198, - 0.1981, - 0.8433, - 0.4552, - 0.6327, - 0.1942, - 0.2545, - 0.5256, - 0.4735, - 0.7416, - 0.4512, - 0.4152, - 0.6376, - 0.5873, - 0.8973, - 0.4512, - 0.1345, - 0.202, - 0.3245, - 0.6705, - 0.2415, - 0.381, - 0.9792, - 0.6517, - 0.7105, - 0.4825, - 0.6567, - 0.2449, - 0.8971, - 0.3415, - 0.7354, - 0.8835, - 0.6831, - 0.2, - 0.9451, - 0.94, - 0.3431, - 0.3578, - 0.3902, - 0.1155, - 0.0844, - 0.378, - 0.4728, - 0.9178, - 0.0637, - 0.1942, - 0.3933, - 0.3179, - 0.8775, - 0.9973, - 0.0973, - 0.2225, - 0.7355, - 0.6236, - 0.5903, - 0.6611, - 0.2924, - 0.0212, - 0.515, - 0.233, - 0.7688, - 0.1633, - 0.5135, - 0.2583, - 0.6764, + 0.5932, + 0.4321, + 0.1354, + 0.6771, + 0.8795, + 0.323, + 0.7774, + 0.3806, + 0.0128, + 0.8314, + 0.903, + 0.8087, + 0.442, + 0.3773, + 0.1014, + 0.1256, + 0.5952, + 0.8217, + 0.4463, + 0.1734, + 0.6689, + 0.408, + 0.3563, + 0.351, + 0.5403, + 0.6785, + 0.7065, + 0.6083, + 0.3796, + 0.1772, + 0.7317, + 0.8808, + 0.7359, + 0.9621, + 0.5004, 0.1631, - 0.1197, - 0.7707, - 0.6463, - 0.7297, - 0.404, - 0.3012, - 0.0332, - 0.854, - 0.8332, - 0.0857, - 0.6862, - 0.4782, - 0.3677, - 0.5833, + 0.2922, + 0.993, + 0.333, + 0.8411, + 0.2796, + 0.9476, + 0.2938, + 0.4034, + 0.7738, + 0.3918, + 0.9408, + 0.8869, + 0.2732, + 0.419, + 0.4752, + 0.4634, + 0.557, + 0.2369, + 0.6374, + 0.4203, + 0.7809, + 0.1825, + 0.7017, + 0.3591, + 0.1572, + 0.6203, + 0.7599, + 0.9801, + 0.4655, + 0.3308, + 0.1111, + 0.7028, + 0.8894, + 0.0481, + 0.2236, + 0.8422, + 0.0859, + 0.3159, + 0.9912, + 0.501, + 0.0091, + 0.627, + 0.0807, + 0.8908, 0.3752, - 0.028, - 0.9679, - 0.5401, - 0.2282, - 0.4648, - 0.6279, - 0.1323, - 0.5124, - 0.6368, - 0.1931, - 0.0486, - 0.7501, - 0.2988, - 0.8345, - 0.0154, - 0.5849, - 0.2194, - 0.02, - 0.8875, - 0.9715, - 0.5826, - 0.8098, - 0.1775, - 0.0282, - 0.4356, - 0.7259, - 0.8074, - 0.4991, - 0.7555, - 0.5129, - 0.6291, - 0.1865, - 0.1245, - 0.7662, - 0.9201, - 0.6029, - 0.2615, - 0.0582, - 0.6965, - 0.5861, - 0.7799, - 0.8011, - 0.8078, - 0.4459, - 0.7276, - 0.441, - 0.7327, - 0.2765, - 0.1261, - 0.813, - 0.1932, - 0.04, - 0.1453, - 0.8486, - 0.6928, - 0.2357, - 0.1608, - 0.4984, - 0.3807, - 0.0874, - 0.1951, - 0.5528, - 0.513, - 0.8949, - 0.7923, - 0.6293, - 0.9174, - 0.8136, - 0.48, - 0.2291, - 0.2835, - 0.0014, - 0.3882, - 0.8076, - 0.4249, - 0.9374, - 0.1538, - 0.1035, - 0.0372, - 0.3598, - 0.4128, - 0.092, - 0.8589, - 0.0182, - 0.0536, - 0.7374, - 0.4463, - 0.3359, - 0.972, - 0.762, - 0.9838, - 0.8106, - 0.8539, - 0.9597, - 0.393, - 0.4521, - 0.0311, - 0.2241, - 0.1921, - 0.6568, - 0.6443, - 0.0928, - 0.0799, - 0.4549, - 0.6197, - 0.7699, - 0.9086, - 0.1407, - 0.605, - 0.181, - 0.132, - 0.7498, - 0.2983, - 0.6918, - 0.8984, - 0.7866, - 0.3426, - 0.6177, - 0.1225, - 0.5253, - 0.0614, - 0.9008, - 0.6233, - 0.7099, - 0.3147, - 0.9966, - 0.2486, - 0.0713, - 0.3151, - 0.4312, - 0.7459, - 0.8652, - 0.7716, - 0.2882, - 0.7929, - 0.5432, - 0.2068, - 0.6466, - 0.0248, - 0.1791, - 0.7748, - 0.8415, - 0.9595, - 0.0614, - 0.4886, - 0.4362, - 0.3724, - 0.6398, - 0.3081, - 0.6028, - 0.2357, - 0.1382, - 0.0991, - 0.8541, - 0.1275, - 0.2685, - 0.2088, - 0.3493, - 0.2713, - 0.281, - 0.8855, - 0.8842, - 0.013, - 0.6561, - 0.6518, - 0.3895, - 0.5008, - 0.4927, - 0.6701, - 0.4542, - 0.6372, - 0.7153, - 0.2808, - 0.5942, - 0.8132, - 0.6098, - 0.4497, - 0.5128, - 0.4303, - 0.4609, - 0.0896, - 0.5776, - 0.8078, - 0.1694, - 0.878, - 0.9534, - 0.5662, - 0.6622, - 0.1711, - 0.095, - 0.489, - 0.1364, - 0.4812, - 0.7729, - 0.3542, - 0.4348, - 0.9692, - 0.2631, - 0.9954, - 0.1339, - 0.8359, - 0.0681, - 0.4934, - 0.1388, - 0.9733, - 0.8045, - 0.2744, - 0.0133, - 0.4107, - 0.6876, - 0.1752, - 0.3036, - 0.2532, - 0.8824, - 0.7212, - 0.7041, - 0.6345, - 0.5134, - 0.222, - 0.9574, - 0.4714, - 0.282, - 0.6383, - 0.8381, - 0.4551, - 0.9102, - 0.7715, - 0.6254, - 0.4529, - 0.6321, - 0.7569, - 0.2613, - 0.6063, - 0.71, - 0.8569, - 0.5532, - 0.1326, - 0.2415, - 0.8342, - 0.6545, - 0.1627, - 0.9386, - 0.6076, - 0.9474, - 0.6804, - 0.2558, - 0.6094, - 0.6693, - 0.3895, - 0.6937, - 0.7602, - 0.3888, - 0.9412, - 0.6897, - 0.3475, - 0.956, - 0.8333, - 0.2106, - 0.2381, - 0.5501, - 0.1188, - 0.3869, - 0.4604, - 0.1137, - 0.0999, - 0.1021, - 0.2604, - 0.256, - 0.8731, - 0.8605, - 0.6014, - 0.3643, - 0.3878, - 0.8913, - 0.7871, - 0.5646, - 0.5927, - 0.6018, - 0.3458, - 0.4714, - 0.5623, - 0.6706, - 0.8053, - 0.0057, - 0.7795, - 0.8789, - 0.8171, - 0.0875, - 0.8213, - 0.7792, - 0.1096, - 0.0341, - 0.1032, - 0.0835, - 0.2712, - 0.3104, - 0.3968, - 0.7838, - 0.2953, - 0.7504, - 0.9883, - 0.9981, - 0.4426, - 0.3728, - 0.1931, - 0.911, - 0.3574, - 0.7477, - 0.243, - 0.2172, - 0.4224, - 0.3504, - 0.5411, - 0.0593, - 0.3623, - 0.3442, - 0.2375, - 0.1158, - 0.5314, - 0.2056, - 0.2032, - 0.0229, - 0.7767, - 0.5668, - 0.9352, - 0.4043, - 0.0932, - 0.9464, - 0.1403, - 0.2745, - 0.9646, - 0.3415, - 0.3953, - 0.0297, - 0.7195, - 0.8038, - 0.9052, - 0.2644, - 0.9147, - 0.9802, - 0.1265, - 0.796, - 0.8618, - 0.8921, - 0.0237, - 0.3326, - 0.5076, - 0.7036, - 0.9729, - 0.9892, - 0.0022, - 0.8646, - 0.669, - 0.9709, - 0.8056, - 0.4336, - 0.4909, - 0.7668, - 0.294, - 0.0796, - 0.6142, - 0.2551, - 0.6191, - 0.8429, - 0.8249, - 0.1361, - 0.7621, - 0.2578, - 0.5613, - 0.5776, - 0.7125, - 0.9261, - 0.0125, - 0.5831, - 0.8077, - 0.001, - 0.1514, - 0.1717, - 0.1572, - 0.0021, - 0.3331, - 0.429, - 0.7746, - 0.4541, - 0.8868, - 0.2451, - 0.6525, - 0.4903, - 0.9479, - 0.9372, - 0.4909, - 0.0252, - 0.295, - 0.8831, - 0.0655, - 0.934, - 0.5235, - 0.5029, - 0.3972, - 0.4698, - 0.8128, - 0.43, - 0.7609, - 0.4989, - 0.8138, - 0.1465, - 0.2015, - 0.6947, - 0.6685, - 0.8918, - 0.9233, - 0.9711, - 0.1816, - 0.402, - 0.0334, - 0.9839, - 0.5382, - 0.4469, - 0.1348, - 0.3355, - 0.0552, - 0.421, - 0.4202, - 0.7466, - 0.027, - 0.4895, - 0.2695, - 0.5807, - 0.3722, - 0.501, - 0.902, - 0.0922, - 0.9586, - 0.3319, - 0.2634, - 0.5106, - 0.9314, - 0.5085, - 0.9658, - 0.2152, - 0.7761, - 0.8165, - 0.7725, - 0.8525, - 0.5864, - 0.2125, - 0.292, - 0.6666, - 0.1104, - 0.7329, - 0.8312, - 0.3322, - 0.7087, - 0.6805, - 0.3522, - 0.3799, - 0.9972, - 0.9583, - 0.1122, - 0.0189, - 0.2161, - 0.8631, - 0.5638, - 0.6815, - 0.4676, - 0.4996, - 0.4579, - 0.7408, - 0.0348, - 0.0697, - 0.9811, - 0.4493, - 0.9107, - 0.8106, - 0.5581, - 0.4156, - 0.5321, - 0.3143, - 0.5956, - 0.3925, - 0.2081, - 0.9755, - 0.8136, - 0.5136, - 0.175, - 0.4885, - 0.992, - 0.9327, - 0.9598, - 0.3752, - 0.8474, - 0.0647, - 0.9986, - 0.2954, - 0.2434, + 0.8546, + 0.7488, + 0.1621, + 0.2585, + 0.4479, + 0.7603, + 0.6896, + 0.3744, + 0.4079, + 0.5443, + 0.5152, + 0.2203, + 0.2408, + 0.6209, + 0.9032, + 0.9885, + 0.7586, + 0.3201, + 0.5643, + 0.8057, + 0.4519, + 0.2737, + 0.0736, + 0.4524, + 0.6732, + 0.9622, + 0.9334, + 0.445, + 0.8829, + 0.1128, + 0.4369, + 0.644, + 0.9021, + 0.9509, + 0.5652, + 0.7519, + 0.4513, + 0.8867, + 0.7193, + 0.9127, + 0.1686, + 0.051, 0.6958, - 0.9756, - 0.5163, - 0.0239, + 0.125, + 0.2005, + 0.3278, + 0.5882, + 0.1126, + 0.099, + 0.5333, + 0.6854, + 0.9794, + 0.0858, + 0.5238, + 0.0324, + 0.0893, + 0.0909, + 0.8873, + 0.6182, + 0.7352, + 0.6729, + 0.5363, + 0.2493, + 0.9053, + 0.6677, + 0.7171, 0.8387, - 0.3606, - 0.933, - 0.5542, - 0.0178, - 0.7952, - 0.0368, - 0.8314, - 0.3556, - 0.224, - 0.7807, - 0.6392, - 0.8459, - 0.0162, - 0.0544, - 0.6968, - 0.9404, - 0.7526, - 0.3925, - 0.2845, - 0.855, - 0.3326, - 0.3865, - 0.2727, - 0.4639, - 0.5053, - 0.5299, - 0.4832, - 0.3434, - 0.6529, - 0.2063, - 0.8894, - 0.4416, - 0.2882, - 0.4262, - 0.6492, - 0.9622, - 0.6462, - 0.7, - 0.1122, - 0.6262, - 0.15, - 0.0178, - 0.6398, - 0.9915, - 0.3535, - 0.5163, - 0.3449, - 0.7049, - 0.4786, - 0.0786, - 0.7259, - 0.2052, - 0.3905, - 0.0604, - 0.8779, - 0.7809, - 0.3703, - 0.1727, - 0.8369, - 0.8984, - 0.2058, - 0.0542, - 0.8651, - 0.4111, - 0.3032, - 0.7417, - 0.8159, - 0.161, - 0.6485, - 0.7136, - 0.3683, - 0.9533, - 0.4408, - 0.1556, - 0.6632, - 0.7891, - 0.4387, - 0.495, - 0.0575, - 0.3702, - 0.4976, - 0.4649, - 0.0903, - 0.6511, - 0.0765, - 0.5901, - 0.1222, - 0.6777, - 0.2572, - 0.2668, - 0.4776, - 0.6798, - 0.8692, - 0.9246, - 0.4275, - 0.7478, - 0.3054, - 0.0224, - 0.8689, - 0.2021, - 0.023, - 0.7889, - 0.9288, - 0.8338, - 0.9612, - 0.3665, - 0.1179, - 0.9583, - 0.2546, - 0.786, - 0.0129, - 0.8343, - 0.8109, - 0.8326, - 0.665, - 0.5103, - 0.0071, - 0.3403, - 0.9189, - 0.85, - 0.6957, - 0.2866, - 0.1297, - 0.6521, - 0.1434, - 0.862, - 0.212, - 0.6795, - 0.2738, - 0.5066, - 0.3376, - 0.7155, - 0.3636, - 0.0769, - 0.8989, - 0.7414, - 0.9291, - 0.3967, - 0.7424, - 0.5032, - 0.9458, - 0.3466, - 0.3045, - 0.2276, - 0.553, - 0.1962, - 0.1811, - 0.6875, - 0.6529, - 0.5337, - 0.8799, - 0.2372, - 0.374, - 0.9557, - 0.206, - 0.4491, - 0.8955, - 0.082, - 0.594, - 0.1033, - 0.6846, - 0.5065, - 0.1542, - 0.2227, - 0.465, - 0.0448, - 0.3529, - 0.5888, - 0.5334, - 0.1908, - 0.5624, - 0.9621, - 0.6286, - 0.616, - 0.5436, - 0.5133, - 0.0458, - 0.5967, - 0.3382, - 0.9462, - 0.6221, - 0.5389, - 0.6403, - 0.7255, - 0.8615, - 0.5138, - 0.4916, - 0.2768, - 0.0234, - 0.8237, - 0.9969, - 0.8922, - 0.8775, - 0.9117, - 0.2365, - 0.6432, - 0.7384, - 0.4983, - 0.9007, - 0.9025, - 0.8388, - 0.6395, + 0.4865, + 0.01, + 0.6152, + 0.9624, + 0.2649, + 0.69, + 0.2816, + 0.068, + 0.6776, + 0.4847, + 0.4672, + 0.1335, + 0.5776, + 0.9874, + 0.9121, + 0.1842, + 0.262, + 0.3513, + 0.1647, + 0.5218, + 0.3114, + 0.5875, + 0.9489, + 0.4574, + 0.065, + 0.8365, + 0.983, + 0.466, + 0.9662, + 0.1923, + 0.5613, + 0.1777, + 0.5539, + 0.1356, + 0.8869, + 0.5523, + 0.4568, + 0.0482, + 0.6007, + 0.2141, + 0.7728, + 0.4724, + 0.3589, + 0.1234, + 0.9851, + 0.6323, + 0.847, + 0.7011, + 0.7942, + 0.8874, + 0.4952, + 0.6684, + 0.7627, + 0.6306, + 0.7156, + 0.4103, + 0.98, + 0.7584, + 0.682, + 0.2423, + 0.4224, + 0.4742, + 0.2751, + 0.5958, + 0.1023, 0.3846, - 0.4432, - 0.1301, - 0.4189, - 0.3004, - 0.4779, - 0.0353, - 0.4235, - 0.0577, - 0.7432, - 0.7862, - 0.4436, - 0.5086, - 0.077, - 0.9536, - 0.2883, - 0.8983, - 0.0208, - 0.5755, - 0.1193, - 0.3152, - 0.0881, - 0.2978, - 0.2269, - 0.5, - 0.6474, - 0.4907, - 0.1475, - 0.9745, - 0.532, - 0.6732, - 0.5202, - 0.8572, + 0.8917, + 0.5544, + 0.4154, + 0.9282, + 0.646, + 0.2143, + 0.9429, + 0.7264, + 0.4583, + 0.5143, + 0.3543, + 0.1741, + 0.3018, 0.8701, - 0.2201, - 0.1837, - 0.8796, - 0.2244, - 0.2074, - 0.3654, - 0.3177, - 0.0226, - 0.2574, - 0.3641, - 0.9924, - 0.2249, - 0.1228, - 0.0544, - 0.3203, - 0.0224, - 0.0102, - 0.5518, - 0.6713, - 0.808, - 0.1374, - 0.2658, - 0.4373, - 0.4669, - 0.0359, - 0.1142, - 0.2139, - 0.623, - 0.3984, - 0.4346, - 0.0924, - 0.6061, - 0.2469, - 0.3869, - 0.6475, - 0.3042, + 0.5279, + 0.0052, + 0.961, + 0.0556, + 0.6023, + 0.108, + 0.0946, + 0.0421, + 0.4618, + 0.4239, + 0.507, + 0.7756, + 0.9711, + 0.5536, + 0.347, + 0.0837, + 0.9136, + 0.0082, + 0.8325, + 0.0728, + 0.9899, + 0.3035, + 0.4159, + 0.6072, + 0.3306, + 0.3007, + 0.2281, + 0.272, + 0.4206, + 0.2909, + 0.0984, + 0.6424, + 0.3183, + 0.5514, + 0.1426, + 0.8399, + 0.8893, + 0.4711, + 0.7359, + 0.8443, + 0.1623, + 0.9651, + 0.5148, + 0.9927, + 0.865, + 0.4271, + 0.8069, + 0.8989, + 0.9325, + 0.3147, + 0.2059, + 0.5169, + 0.9431, + 0.7958, + 0.7352, + 0.5461, + 0.3586, + 0.8753, + 0.3682, + 0.4603, + 0.7072, + 0.7533, + 0.7589, + 0.3348, + 0.2288, + 0.7889, + 0.9887, + 0.6968, + 0.7663, + 0.6747, + 0.0355, + 0.4713, + 0.9677, + 0.9494, + 0.343, + 0.3474, + 0.4651, + 0.0217, + 0.646, + 0.4309, + 0.6094, + 0.3794, + 0.4107, + 0.4574, + 0.3369, + 0.7762, + 0.2623, + 0.6373, + 0.4547, + 0.0306, + 0.46, + 0.9849, + 0.9185, + 0.9698, + 0.5906, + 0.6214, + 0.8562, + 0.2571, + 0.863, + 0.0355, + 0.7487, + 0.7927, + 0.1597, + 0.1168, + 0.0725, + 0.4926, + 0.5274, + 0.6499, + 0.7142, + 0.5725, + 0.831, + 0.586, + 0.4799, + 0.3757, + 0.7329, + 0.84, + 0.3129, + 0.4632, + 0.622, 0.0733, - 0.1452, - 0.473, - 0.5572, - 0.1282, - 0.3683, - 0.2072, - 0.0866, - 0.666, - 0.1124, - 0.2889, - 0.0788, - 0.6822, - 0.9554, - 0.4324, - 0.3704, - 0.1025, - 0.4802, - 0.3763, - 0.2308, - 0.3875, - 0.5413, - 0.4136, - 0.9946, - 0.6302, - 0.6143, - 0.7195, - 0.3666, - 0.1163, - 0.0793, - 0.1161, - 0.3431, - 0.979, - 0.349, - 0.094, - 0.2756, - 0.6173, - 0.5277, - 0.5368, - 0.2531, - 0.0753, - 0.3781, - 0.2263, - 0.3745, - 0.6194, - 0.1884, - 0.3931, - 0.9524, - 0.636, - 0.0244, - 0.5751, - 0.1798, - 0.0028, - 0.3669, - 0.148, - 0.2471, - 0.9163, - 0.7926, - 0.3169, - 0.7035, + 0.9276, + 0.0586, 0.6971, - 0.8711, - 0.5003, - 0.3806, - 0.6992, - 0.9908, - 0.6151, - 0.0844, - 0.2017, - 0.8626, - 0.9787, - 0.3394, - 0.1763, - 0.7187, - 0.7164, - 0.747, - 0.018, - 0.3816, - 0.7946, - 0.7175, - 0.9931, - 0.7996, - 0.333, - 0.9352, - 0.1456, - 0.6727, - 0.0555, - 0.3406, - 0.1653, - 0.109, - 0.9847, - 0.2823, - 0.2133, - 0.1694, - 0.6649, - 0.0683, - 0.1138, - 0.1906, - 0.5381, - 0.2561, - 0.7755, - 0.4305, - 0.0494, - 0.0857, - 0.5208, - 0.9457, - 0.6975, - 0.4419, - 0.3098, - 0.1605, - 0.3518, - 0.5997, - 0.0788, - 0.4109, - 0.7353, - 0.6231, - 0.0555, - 0.2592, - 0.3837, - 0.6679, - 0.5715, - 0.7309, - 0.3358, - 0.2465, - 0.5502, - 0.3672, - 0.9059, - 0.1529, - 0.243, - 0.2014, - 0.6144, - 0.6964, - 0.9975, - 0.0667, - 0.7891, - 0.9565, - 0.6783, - 0.5686, - 0.7056, - 0.4624, - 0.2435, - 0.4504, - 0.4371, - 0.1026, - 0.1014, - 0.8942, - 0.7904, - 0.6101, - 0.6352, - 0.2954, - 0.6771, - 0.8806, - 0.5683, - 0.37, - 0.3341, - 0.5709, - 0.9763, - 0.2509, - 0.3525, - 0.7698, - 0.5547, - 0.255, - 0.7153, - 0.138, - 0.9791, - 0.3033, - 0.1585, - 0.854, - 0.39, - 0.1871, - 0.6807, - 0.6167, - 0.1393, - 0.4417, - 0.4235, + 0.36, + 0.859, 0.5729, - 0.2269, - 0.1784, - 0.8644, - 0.3697, - 0.0054, - 0.6297, - 0.0944, - 0.4958, - 0.5512, - 0.5844, - 0.0467, - 0.2678, - 0.7279, - 0.4652, - 0.7971, - 0.8053, - 0.9511, - 0.594, - 0.5008, - 0.6583, - 0.4176, - 0.8801, - 0.5572, - 0.0441, - 0.5086, - 0.9841, - 0.5763, - 0.9632, - 0.9553, - 0.6903, - 0.2707, - 0.2038, - 0.8959, - 0.2021, - 0.7741, - 0.3765, - 0.8987, - 0.0689, - 0.6815, - 0.5668, - 0.4554, - 0.0603, - 0.2978, - 0.8139, - 0.1382, - 0.3542, - 0.9053, - 0.3223, - 0.339, - 0.22, - 0.6253, - 0.7467, - 0.386, - 0.8867, - 0.3183, - 0.9018, - 0.7121, - 0.2555, - 0.8324, - 0.8349, - 0.0991, - 0.5998, - 0.7698, - 0.1209, - 0.8928, - 0.4312, - 0.4852, - 0.3699, - 0.4495, - 0.3881, - 0.8367, - 0.1574, - 0.8195, - 0.2216, - 0.4384, - 0.0839, + 0.9275, 0.3051, - 0.7102, - 0.3889, - 0.8783, - 0.1482, - 0.5706, - 0.2299, - 0.0658, - 0.5357, - 0.2563, - 0.5262, - 0.1201, - 0.5007, - 0.1478, - 0.9599, - 0.5477, - 0.8547, - 0.7412, - 0.8578, - 0.1392, - 0.9749, - 0.1651, - 0.2036, + 0.0671, + 0.2191, + 0.3141, + 0.7383, + 0.5376, + 0.8394, + 0.5433, + 0.6578, 0.8975, - 0.149, - 0.7848, - 0.0343, - 0.5498, - 0.3044, - 0.7839, - 0.9922, - 0.2544, - 0.3768, - 0.1477, - 0.3798, - 0.3927, - 0.1165, - 0.8592, - 0.6394, - 0.2504, - 0.7896, - 0.3267, - 0.0072, - 0.447, - 0.6531, - 0.2326, - 0.4657, - 0.499, - 0.7405, - 0.1438, - 0.2121, - 0.945, - 0.5089, - 0.9443, - 0.3134, - 0.7409, - 0.4903, - 0.2662, - 0.1657, - 0.1809, - 0.5752, - 0.6289, - 0.2647, - 0.5635, - 0.0619, - 0.9253, - 0.1069, - 0.8188, - 0.7619, - 0.1902, - 0.8766, - 0.671, - 0.3661, - 0.1461, - 0.6118, - 0.718, - 0.9561, - 0.1856, - 0.2333, - 0.8956, - 0.9412, - 0.7868, - 0.0507, - 0.9252, - 0.426, - 0.6786, - 0.9415, - 0.8018, - 0.8328, - 0.8981, - 0.3968, - 0.2065, - 0.8599, - 0.3655, - 0.6221, - 0.8789, - 0.4306, - 0.4181, - 0.7574, - 0.1643, - 0.417, - 0.9241, - 0.8795, - 0.8784, - 0.2738, - 0.8443, - 0.6223, - 0.0583, - 0.9729, - 0.2554, - 0.8004, - 0.5849, - 0.8519, - 0.4598, - 0.4396, - 0.1978, - 0.8915, - 0.4952, - 0.3842, - 0.0259, - 0.4367, - 0.9374, - 0.1364, - 0.6429, - 0.5412, - 0.7198, - 0.162, - 0.602, - 0.3122, - 0.7887, - 0.6614, - 0.0857, - 0.4355, - 0.55, - 0.6853, - 0.2033, - 0.6144, - 0.2125, - 0.7978, - 0.0759, - 0.6333, - 0.0722, - 0.9265, - 0.8093, - 0.0272, - 0.9081, - 0.3143, - 0.7917, - 0.1051, - 0.5793, - 0.1627, - 0.6621, - 0.9421, - 0.4478, - 0.3591, - 0.4553, - 0.1261, - 0.6488, - 0.0715, - 0.3236, - 0.1352, - 0.3223, - 0.842, - 0.5354, - 0.1791, - 0.8896, + 0.6493, 0.0581, - 0.6785, - 0.9237, - 0.4962, - 0.6538, - 0.2875, - 0.9464, - 0.2874, - 0.7438, - 0.4793, - 0.4153, - 0.3415, - 0.1793, - 0.108, - 0.9775, - 0.9285, - 0.0912, - 0.949, - 0.4454, - 0.1111, - 0.3181, - 0.3579, - 0.3562, - 0.05, - 0.3234, - 0.0193, + 0.7008, + 0.6506, + 0.8349, + 0.3465, + 0.9212, + 0.0745, + 0.8545, + 0.0421, + 0.4321, + 0.3252, + 0.6659, + 0.0728, + 0.1655, + 0.4098, + 0.5607, + 0.3375, 0.2786, - 0.605, - 0.2755, - 0.1375, - 0.6743, - 0.4187, - 0.5602, - 0.8804, - 0.1114, - 0.032, - 0.6439, - 0.0142, - 0.6463, - 0.5253, - 0.717, - 0.7795, - 0.3902, - 0.4712, - 0.5018, - 0.1626, - 0.4638, - 0.5016, - 0.1145, - 0.4975, - 0.6016, - 0.5737, - 0.8041, - 0.303, - 0.512, - 0.6058, - 0.286, - 0.3101, - 0.8408, - 0.6597, - 0.225, - 0.1426, - 0.1131, - 0.1931, - 0.3223, - 0.6269, - 0.2104, - 0.8507, - 0.2246, - 0.8258, - 0.064, - 0.0743, - 0.0625, - 0.3807, - 0.3052, - 0.7719, - 0.9932, - 0.7782, - 0.4169, - 0.0234, - 0.3629, - 0.7646, - 0.1513, - 0.5491, - 0.9948, - 0.1835, - 0.991, - 0.7808, - 0.0206, - 0.291, - 0.9284, - 0.6047, - 0.8599, - 0.727, - 0.3594, - 0.9911, - 0.4248, - 0.6686, - 0.3583, - 0.7832, - 0.6582, - 0.8008, - 0.2944, - 0.3982, - 0.3742, - 0.2653, - 0.6174, - 0.2108, - 0.581, - 0.941, - 0.903, - 0.9654, - 0.468, - 0.8555, - 0.1533, - 0.7633, - 0.4571, - 0.7118, - 0.6447, - 0.6235, - 0.8421, - 0.4406, - 0.7693, - 0.9751, - 0.9779, - 0.4492, - 0.3007, - 0.2631, - 0.5545, - 0.9429, - 0.8091, - 0.5072, - 0.6625, - 0.9716, - 0.0266, - 0.1287, - 0.582, - 0.8691, - 0.1291, - 0.3345, - 0.7383, - 0.8277, - 0.6299, - 0.289, - 0.7243, - 0.0727, - 0.7747, - 0.6854, - 0.9491, - 0.084, - 0.723, - 0.8674, - 0.4403, - 0.7291, - 0.7027, - 0.1744, - 0.6331, - 0.0187, - 0.8184, - 0.4872, - 0.9006, - 0.435, - 0.1556, - 0.3378, - 0.0762, - 0.9819, - 0.6526, - 0.7229, - 0.0877, - 0.0579, - 0.7394, - 0.5608, - 0.589, - 0.0593, - 0.3324, - 0.4788, - 0.54, - 0.3003, - 0.8207, - 0.4212, - 0.1778, - 0.7807, - 0.347, - 0.2465, - 0.3872, - 0.4014, - 0.4558, - 0.3421, - 0.5733, - 0.7333, - 0.9618, - 0.9546, - 0.5663, - 0.9883, - 0.4996, - 0.3195, - 0.5783, - 0.2722, - 0.6541, - 0.7739, - 0.5787, - 0.1059, - 0.6136, - 0.8613, - 0.5493, - 0.4826, - 0.8721, - 0.524, - 0.5048, - 0.158, - 0.2004, - 0.5793, - 0.5696, - 0.9024, - 0.2831, - 0.6671, - 0.2745, - 0.4899, - 0.3819, - 0.9273, - 0.7869, - 0.2305, - 0.3566, - 0.9992, - 0.6415, - 0.8053, - 0.8454, - 0.3818, - 0.9841, - 0.7951, - 0.5786, - 0.5386, - 0.7019, - 0.9769, - 0.1902, - 0.8856, - 0.2334, - 0.6907, - 0.3549, - 0.763, - 0.886, - 0.2003, - 0.4468, - 0.4545, - 0.2031, - 0.873, - 0.518, - 0.592, - 0.6717, - 0.8171, - 0.1185, - 0.3198, - 0.7717, - 0.2983, - 0.675, - 0.9736, - 0.6979, - 0.699, - 0.6591, - 0.8756, - 0.076, - 0.273, - 0.3955, - 0.7916, - 0.638, - 0.3951, - 0.3807, - 0.0941, - 0.5638, - 0.7472, - 0.9736, - 0.1464, - 0.8617, - 0.523, - 0.4149, - 0.3856, - 0.2915, - 0.0408, - 0.8859, - 0.702, - 0.6259, - 0.5751, - 0.9452, - 0.0336, - 0.1219, - 0.6198, - 0.9556, - 0.5763, - 0.1943, - 0.2232, - 0.1446, - 0.6786, - 0.4792, - 0.3505, - 0.7481, - 0.393, - 0.2366, - 0.9603, - 0.0091, - 0.23, - 0.4863, - 0.2715, - 0.7771, - 0.3722, - 0.5937, - 0.8085, - 0.2013, - 0.2945, - 0.7743, - 0.291, - 0.6351, - 0.4251, - 0.2248, - 0.3479, + 0.2862, + 0.821, + 0.1854, + 0.5389, + 0.0425, + 0.7263, + 0.0245, + 0.2198, + 0.8932, + 0.9208, + 0.1546, + 0.2383, + 0.9309, + 0.3978, 0.6213, - 0.3278, - 0.9653, - 0.6302, - 0.0115, - 0.6171, - 0.1363, - 0.2054, - 0.0483, - 0.8839, - 0.4192, + 0.9829, + 0.9275, + 0.554, + 0.0002, + 0.7935, + 0.8621, + 0.8075, + 0.0588, + 0.8061, + 0.5887, + 0.9952, + 0.1597, + 0.1525, + 0.0143, + 0.8679, + 0.7851, + 0.8276, + 0.1839, + 0.3061, + 0.106, + 0.1433, + 0.0769, + 0.2568, + 0.6949, + 0.6225, + 0.2322, + 0.3256, + 0.0893, + 0.0153, + 0.6629, + 0.9109, + 0.0757, + 0.9058, + 0.939, 0.4513, - 0.2284, - 0.8753, - 0.5187, - 0.2974, - 0.0338, - 0.6669, - 0.3453, - 0.0069, - 0.5713, - 0.4826, - 0.5804, - 0.3176, - 0.2479, - 0.7394, - 0.3172, - 0.2081, - 0.5541, - 0.9511, - 0.877, - 0.7537, - 0.1135, - 0.8862, - 0.8219, - 0.0536, - 0.7022, - 0.4072, - 0.1744, - 0.2581, - 0.5132, - 0.7762, - 0.434, - 0.8447, - 0.5238, - 0.7363, - 0.471, - 0.4134, - 0.0032, - 0.4505, - 0.5248, - 0.3849, - 0.4759, - 0.319, - 0.8694, - 0.5711, - 0.2341, - 0.837, - 0.0082, - 0.9381, - 0.6061, - 0.3864, + 0.425, + 0.8368, + 0.2744, + 0.3651, + 0.563, + 0.5682, + 0.4207, + 0.2899, + 0.7811, + 0.2709, + 0.3412, + 0.1434, + 0.4618, + 0.0588, + 0.8011, + 0.2519, + 0.1211, + 0.2024, + 0.0926, + 0.8917, + 0.5382, + 0.3787, + 0.352, + 0.0038, + 0.3662, + 0.0863, + 0.6526, + 0.7325, + 0.3044, + 0.9994, + 0.1511, + 0.0927, + 0.0942, + 0.2021, + 0.59, + 0.2135, + 0.0036, + 0.8476, + 0.8855, + 0.6021, + 0.2679, + 0.0464, + 0.1155, + 0.3882, + 0.9246, + 0.3475, + 0.6096, + 0.7004, + 0.1979, + 0.1651, + 0.9578, + 0.9032, + 0.0065, + 0.0169, + 0.6193, + 0.7756, + 0.1678, + 0.4138, + 0.3087, + 0.4456, + 0.7257, + 0.7466, + 0.1109, + 0.8639, + 0.4477, + 0.7324, + 0.1801, + 0.9637, + 0.478, + 0.782, + 0.1929, + 0.886, + 0.0854, + 0.5738, + 0.3415, + 0.0068, + 0.1207, + 0.7615, + 0.4298, + 0.365, + 0.7497, + 0.5557, + 0.9951, + 0.1307, + 0.7239, + 0.5978, + 0.0597, + 0.8225, + 0.5023, + 0.6556, + 0.3708, + 0.6727, + 0.375, + 0.1741, + 0.3563, + 0.6691, 0.5217, - 0.5628, - 0.1513, - 0.6495, - 0.5943, - 0.9004, - 0.3781, - 0.8343, - 0.0001, - 0.646, - 0.1507, - 0.7839, - 0.3256, - 0.8058, - 0.4332, - 0.8257, - 0.3689, - 0.1038, - 0.7532, - 0.4219, - 0.6044, - 0.0443, - 0.6684, - 0.9917, - 0.8394, - 0.7217, - 0.4762, - 0.7366, - 0.1149, - 0.0219, - 0.1676, - 0.9408, - 0.8701, - 0.7369, - 0.1857, - 0.042, - 0.4094, - 0.1137, - 0.8767, - 0.248, - 0.9849, - 0.9696, - 0.5615, - 0.8766, - 0.3559, - 0.4741, - 0.1365, - 0.2883, - 0.4406, - 0.2363, - 0.6777, - 0.9598, - 0.3898, - 0.0874, - 0.0597, - 0.5647, - 0.9421, - 0.6544, - 0.176, - 0.2896, - 0.4031, - 0.686, - 0.7751, - 0.6287, - 0.2219, - 0.0064, - 0.8138, - 0.1989, - 0.9347, - 0.7448, - 0.7215, - 0.8278, - 0.4254, - 0.374, + 0.1498, + 0.6115, + 0.0594, + 0.3894, + 0.9783, + 0.5836, + 0.5057, + 0.3888, + 0.7371, + 0.26, + 0.5236, + 0.8855, + 0.807, 0.1084, - 0.2301, - 0.5215, - 0.7796, - 0.832, - 0.3941, - 0.3703, - 0.1306, - 0.219, - 0.3362, - 0.8255, - 0.0672, - 0.2198, - 0.6322, - 0.764, - 0.653, - 0.2806, - 0.5232, - 0.2449, - 0.3283, - 0.257, - 0.4843, - 0.8597, - 0.5843, - 0.1818, - 0.0879, - 0.5809, - 0.4743, - 0.502, - 0.5741, - 0.5922, - 0.6069, - 0.8456, - 0.7736, - 0.2272, - 0.1708, - 0.6591, - 0.1122, - 0.9429, - 0.6317, - 0.8627, - 0.5704, - 0.4719, - 0.8526, - 0.6535, - 0.6102, - 0.0417, - 0.8607, - 0.1778, - 0.0074, - 0.6513, - 0.3618, - 0.6147, - 0.9859, - 0.6361, - 0.2329, - 0.1978, - 0.6353, - 0.624, - 0.4668, - 0.2277, - 0.8233, - 0.5138, - 0.1546, - 0.8853, - 0.6043, - 0.6543, + 0.5624, + 0.5701, + 0.1864, + 0.2311, 0.8671, - 0.4418, + 0.0125, + 0.2017, + 0.1374, + 0.2421, + 0.3932, + 0.5135, + 0.7501, + 0.8753, + 0.8414, + 0.0424, + 0.2561, + 0.2782, + 0.3268, + 0.091, + 0.8569, + 0.0916, + 0.3671, + 0.5914, + 0.2892, + 0.5286, + 0.7989, + 0.037, + 0.8233, + 0.6348, + 0.2212, + 0.931, + 0.7224, + 0.8799, + 0.4202, + 0.3536, + 0.8946, + 0.0016, + 0.8241, + 0.7982, + 0.9889, 0.6991, - 0.6604, - 0.4057, - 0.468, - 0.3907, - 0.0291, - 0.577, - 0.0231, - 0.0991, - 0.6, - 0.6295, - 0.2191, - 0.9113, - 0.8122, - 0.0043, - 0.7987, - 0.0772, - 0.1998, - 0.0527, - 0.2109, - 0.7577, - 0.2, - 0.4402, - 0.6744, - 0.1868, - 0.0898, - 0.3971, - 0.5513, - 0.6971, - 0.5827, - 0.966, - 0.2269, - 0.7135, - 0.2379, - 0.2132, - 0.2934, - 0.5085, - 0.1648, - 0.76, - 0.5096, - 0.3538, - 0.7045, - 0.3748, + 0.4648, + 0.3966, + 0.2544, + 0.2327, + 0.2772, + 0.165, + 0.1365, + 0.4206, + 0.0747, + 0.9508, + 0.1503, + 0.8752, + 0.8376, + 0.6052, + 0.0719, 0.6041, - 0.9869, - 0.0513, - 0.3386, - 0.4166, - 0.6972, - 0.6083, - 0.5005, - 0.4189, - 0.3139, - 0.0477, - 0.3287, - 0.7762, - 0.9727, - 0.4251, - 0.7424, - 0.5957, - 0.8476, - 0.5482, - 0.1563, - 0.8672, - 0.4327, - 0.1491, - 0.1198, - 0.1151, - 0.6163, - 0.5085, - 0.8548, - 0.4579, - 0.7774, - 0.9992, - 0.7474, - 0.6035, - 0.4418, - 0.3478, - 0.237, - 0.4774, - 0.509, - 0.3908, - 0.3684, - 0.8324, - 0.7895, - 0.9089, - 0.5573, - 0.786, - 0.9571, - 0.7014, - 0.1153, - 0.1553, - 0.745, - 0.7649, - 0.194, - 0.6634, - 0.3357, - 0.833, - 0.0763, - 0.4116, - 0.2405, - 0.3069, - 0.4483, - 0.1084, - 0.4183, - 0.5174, - 0.984, - 0.3828, - 0.6143, - 0.0156, - 0.9586, - 0.497, - 0.3879, - 0.2086, - 0.8757, - 0.2926, - 0.3325, - 0.4047, - 0.1073, - 0.8001, - 0.8941, - 0.4578, - 0.419, - 0.9862, - 0.9737, - 0.8269, - 0.8509, - 0.2299, - 0.0554, - 0.7343, - 0.7652, - 0.6553, - 0.7996, - 0.0786, - 0.6838, - 0.5594, - 0.9775, - 0.8222, - 0.6666, - 0.3423, - 0.2019, - 0.3391, - 0.8228, - 0.2955, - 0.2121, - 0.5481, - 0.9438, - 0.0942, - 0.3233, - 0.499, - 0.2855, - 0.771, - 0.608, - 0.7934, - 0.5006, - 0.5822, - 0.4397, - 0.4547, - 0.3055, - 0.5581, - 0.539, - 0.2655, - 0.9493, - 0.4109, - 0.6702, - 0.6993, - 0.4905, - 0.5254, - 0.3019, - 0.9335, - 0.654, - 0.3506, - 0.6721, - 0.3917, - 0.0271, - 0.8774, - 0.6949, - 0.5013, - 0.8548, - 0.1636, - 0.0078, - 0.6203, - 0.2332, - 0.9937, - 0.8552, - 0.9157, - 0.0683, - 0.7413, - 0.0676, - 0.203, - 0.5587, - 0.183, - 0.1134, - 0.817, - 0.7592, - 0.291, - 0.6466, - 0.88, - 0.5462, - 0.8416, - 0.6979, - 0.9091, - 0.4946, - 0.4392, - 0.083, - 0.8599, - 0.9758, - 0.4248, - 0.2738, - 0.3526, - 0.4934, - 0.9301, - 0.9687, - 0.373, - 0.6313, - 0.5013, - 0.7219, - 0.1342, - 0.4242, - 0.5506, - 0.1651, - 0.374, - 0.1531, - 0.3554, - 0.6272, - 0.5745, - 0.3865, - 0.1496, - 0.5425, - 0.4213, - 0.5666, - 0.0904, - 0.2262, - 0.1379, - 0.9233, - 0.4335, - 0.6706, - 0.7059, - 0.6554, - 0.8893, - 0.4748, - 0.7188, - 0.2093, - 0.2677, - 0.3232, - 0.9072, - 0.7092, - 0.9825, - 0.4779, - 0.6795, - 0.1167, - 0.6316, - 0.8302, - 0.1668, - 0.2673, - 0.2452, - 0.9913, - 0.6647, - 0.5092, - 0.6951, - 0.3424, - 0.5435, - 0.6511, - 0.0643, - 0.3677, - 0.0218, - 0.7377, - 0.192, - 0.0548, - 0.766, - 0.9086, - 0.9449, - 0.4816, - 0.0038, - 0.8136, - 0.8787, - 0.1271, - 0.4683, - 0.1718, - 0.2972, - 0.1785, - 0.5429, - 0.3364, - 0.0526, - 0.3097, - 0.4801, - 0.987, - 0.7867, - 0.2433, - 0.2007, - 0.1091, - 0.483, - 0.9311, - 0.6004, - 0.3968, - 0.0241, - 0.4577, - 0.4579, - 0.8729, - 0.6461, - 0.4423, - 0.8165, - 0.6925, - 0.9937, - 0.8349, - 0.5616, - 0.011, - 0.3223, - 0.6383, - 0.164, - 0.0348, - 0.0461, - 0.0441, - 0.3495, - 0.3837, - 0.3874, - 0.598, - 0.2928, - 0.2808, - 0.1106, - 0.9573, - 0.0958, - 0.0073, - 0.1417, - 0.0189, - 0.4093, - 0.1049, - 0.2753, - 0.1174, - 0.0251, - 0.4251, - 0.7877, - 0.7215, - 0.4254, - 0.4584, - 0.3813, - 0.0608, - 0.7995, - 0.2601, - 0.0154, - 0.0658, - 0.5849, - 0.704, - 0.2301, - 0.7506, - 0.8813, - 0.2496, - 0.3057, - 0.5965, - 0.1192, - 0.0609, - 0.4933, - 0.6401, - 0.5522, - 0.2903, - 0.242, - 0.7075, - 0.121, - 0.988, - 0.5853, - 0.4813, - 0.1533, - 0.9467, - 0.7674, - 0.7857, - 0.104, - 0.6652, - 0.9467, - 0.3483, - 0.2152, - 0.1663, - 0.8766, - 0.7848, - 0.3622, - 0.6657, - 0.738, - 0.3457, - 0.3505, - 0.5165, - 0.915, - 0.8491, - 0.1939, - 0.2863, - 0.4793, - 0.3743, - 0.6339, - 0.9886, - 0.367, - 0.2083, - 0.4049, - 0.6949, - 0.9405, - 0.3387, - 0.1799, - 0.3256, - 0.2004, - 0.2374, - 0.4315, - 0.8136, - 0.4048, - 0.1145, - 0.1601, - 0.5542, - 0.176, - 0.1033, - 0.0738, - 0.6094, - 0.8648, - 0.5823, - 0.7825, - 0.0166, - 0.3746, - 0.2834, - 0.7394, - 0.6846, - 0.8492, - 0.4416, - 0.2256, - 0.2696, - 0.2606, - 0.0402, - 0.4247, - 0.0593, - 0.5064, - 0.9313, - 0.365, - 0.5844, - 0.3987, - 0.1972, - 0.0155, - 0.7737, - 0.4152, - 0.627, - 0.8392, - 0.3138, - 0.3716, - 0.9622, - 0.9512, - 0.5566, - 0.475, - 0.7681, - 0.3687, - 0.3405, - 0.508, - 0.9031, - 0.2503, - 0.1209, - 0.6668, + 0.5761, + 0.5761, + 0.2564, + 0.177, + 0.1997, + 0.4481, + 0.7138, + 0.5892, + 0.7796, + 0.0717, + 0.205, + 0.9378, + 0.7936, + 0.3258, + 0.7357, + 0.2312, + 0.8246, + 0.4913, + 0.4374, + 0.9327, + 0.5056, + 0.6619, + 0.4401, + 0.3696, + 0.7126, + 0.5869, + 0.2574, + 0.8077, + 0.4669, + 0.7584, + 0.0789, + 0.7973, + 0.1358, + 0.8616, + 0.5453, + 0.378, + 0.8605, + 0.2821, + 0.6031, + 0.324, + 0.8234, + 0.4731, + 0.7587, + 0.9432, + 0.8966, + 0.7671, + 0.5196, + 0.2971, + 0.282, + 0.2476, + 0.3484, + 0.3452, + 0.5702, + 0.6656, + 0.0228, + 0.9128, + 0.0334, + 0.6524, + 0.3755, + 0.895, + 0.7109, + 0.2577, + 0.1484, + 0.1407, + 0.7207, + 0.0707, + 0.0993, + 0.3991, + 0.9339, 0.9613, - 0.579, - 0.3529, - 0.6178, - 0.8439, - 0.953, - 0.5083, - 0.064, - 0.2788, - 0.6738, - 0.346, - 0.1563, - 0.0612, - 0.0604, - 0.1649, + 0.9634, + 0.0109, + 0.1257, + 0.8775, + 0.76, + 0.9158, + 0.8201, + 0.8449, + 0.333, + 0.3666, + 0.5518, + 0.958, + 0.5189, + 0.0738, + 0.0163, + 0.6732, + 0.4934, + 0.4689, + 0.3609, + 0.0591, + 0.0962, + 0.3778, + 0.4574, + 0.9474, + 0.1256, + 0.3083, + 0.0345, + 0.3012, + 0.819, + 0.7902, + 0.3662, + 0.3226, + 0.1079, + 0.5131, + 0.8086, + 0.3688, + 0.5888, + 0.9483, + 0.5705, + 0.8464, + 0.7274, + 0.7702, + 0.0571, + 0.5316, + 0.3662, + 0.0551, + 0.6968, + 0.6566, + 0.7252, + 0.3023, + 0.1092, + 0.0233, + 0.9669, + 0.4905, + 0.1246, + 0.479, + 0.4404, + 0.3039, + 0.4288, + 0.2131, + 0.7085, + 0.8668, + 0.7981, + 0.9509, + 0.0181, + 0.4606, + 0.4991, + 0.9152, + 0.4862, + 0.0924, + 0.2102, + 0.1997, + 0.2265, + 0.3889, + 0.1204, + 0.6967, + 0.1716, + 0.4052, + 0.6128, + 0.6193, + 0.446, + 0.4946, + 0.9575, + 0.9151, + 0.2073, + 0.684, + 0.2247, + 0.677, + 0.7702, + 0.7534, + 0.5025, + 0.6868, + 0.1821, + 0.8838, + 0.5849, + 0.8065, + 0.2045, + 0.9269, + 0.1554, + 0.6165, + 0.845, + 0.2478, + 0.6561, + 0.1144, + 0.453, + 0.2443, + 0.3346, + 0.3842, + 0.2295, + 0.8363, + 0.4817, + 0.9927, + 0.2521, + 0.9544, + 0.2034, + 0.9176, + 0.6288, + 0.2917, + 0.9644, + 0.8371, + 0.341, + 0.4273, + 0.2384, + 0.5388, + 0.612, + 0.9779, + 0.6682, + 0.3721, + 0.9947, + 0.3758, + 0.8997, + 0.0129, + 0.1037, 0.0001, - 0.803, - 0.4888, + 0.8033, + 0.7123, + 0.3404, + 0.4709, + 0.4689, + 0.4846, + 0.8396, + 0.9008, + 0.381, + 0.9008, + 0.1115, + 0.17, + 0.7763, + 0.018, + 0.5525, + 0.3276, + 0.6961, + 0.5019, + 0.563, + 0.2829, + 0.8218, + 0.012, + 0.5712, + 0.8414, + 0.8582, + 0.9899, + 0.2588, + 0.9725, + 0.7588, + 0.5927, 0.6945, - 0.4231, - 0.6227, - 0.0152, - 0.6021, - 0.7055, - 0.0246, - 0.0263, - 0.0618, - 0.8752, - 0.4759, - 0.7112, - 0.9893, - 0.2395, - 0.4999, - 0.1374, - 0.0404, - 0.0438, - 0.3067, - 0.9096, - 0.3515, - 0.8887, - 0.8822, - 0.4893, - 0.3434, - 0.1365, - 0.1744, - 0.9537, - 0.6429, - 0.3216, - 0.3493, - 0.3297, - 0.4353, - 0.0748, - 0.5906, - 0.8641, - 0.4373, - 0.7079, - 0.1545, - 0.1812, - 0.6089, - 0.4909, - 0.4654, - 0.543, - 0.9607, - 0.8597, - 0.5257, - 0.3883, - 0.6845, - 0.656, - 0.4996, - 0.6933, - 0.5295, - 0.5008, - 0.4515, - 0.0507, - 0.7498, - 0.9613, - 0.0849, - 0.6996, - 0.2172, - 0.8777, - 0.2468, - 0.1646, - 0.902, - 0.2264, - 0.6549, - 0.9091, - 0.0226, - 0.1605, - 0.8103, - 0.5782, - 0.9379, - 0.5765, - 0.9599, - 0.4035, - 0.6491, - 0.1258, - 0.1856, - 0.0545, - 0.8144, - 0.6758, - 0.09, - 0.159, - 0.3201, - 0.3746, - 0.8297, - 0.2312, - 0.7104, - 0.3322, - 0.91, - 0.9441, - 0.158, - 0.7798, - 0.1913, - 0.7564, - 0.0241, - 0.6382, - 0.9229, - 0.3687, - 0.3911, - 0.9907, - 0.4323, - 0.2821, - 0.7262, - 0.4882, - 0.3558, - 0.3, - 0.4467, - 0.4912, - 0.0362, - 0.2662, - 0.7245, - 0.5597, - 0.184, - 0.8522, - 0.9096, - 0.7779, - 0.3874, - 0.667, - 0.7452, - 0.1677, - 0.3831, - 0.1796, - 0.598, - 0.9923, - 0.9897, + 0.5315, + 0.7208, + 0.878, + 0.0496, + 0.3064, + 0.7567, + 0.1162, + 0.186, + 0.699, + 0.5451, + 0.8156, + 0.7939, + 0.4193, + 0.8638, + 0.877, + 0.2657, + 0.3363, + 0.4167, + 0.031, + 0.8078, + 0.4503, + 0.287, + 0.1628, + 0.2317, + 0.3337, + 0.6181, + 0.1023, + 0.4305, + 0.4963, + 0.4804, + 0.4522, + 0.6917, + 0.48, + 0.2123, + 0.3765, + 0.3693, + 0.6907, + 0.2013, + 0.4475, + 0.0396, + 0.6371, + 0.013, + 0.9392, + 0.727, + 0.168, + 0.6204, + 0.3426, + 0.5408, + 0.8971, + 0.8146, + 0.443, + 0.1141, + 0.1437, + 0.5416, + 0.4243, + 0.7762, + 0.1606, + 0.6624, + 0.7306, + 0.5996, + 0.402, + 0.3917, + 0.6355, + 0.0444, 0.7454, - 0.1347, - 0.5524, - 0.631, - 0.0941, - 0.4026, - 0.3245, - 0.5157, - 0.8427, - 0.9231, - 0.1493, - 0.1533, - 0.4534, - 0.8126, - 0.2771, - 0.8594, - 0.902, - 0.2699, - 0.8224, - 0.1191, - 0.8173, - 0.294, - 0.828, - 0.5759, - 0.4113, - 0.0024, - 0.1784, - 0.56, - 0.3134, + 0.9553, + 0.3179, + 0.432, + 0.3652, + 0.0189, + 0.1017, + 0.1101, + 0.6133, + 0.629, + 0.1281, + 0.7332, + 0.9354, + 0.3691, + 0.536, + 0.1207, + 0.7348, + 0.9848, + 0.8737, + 0.6102, + 0.4996, + 0.0998, + 0.709, + 0.4045, + 0.3385, + 0.9187, + 0.0315, + 0.9093, + 0.2645, + 0.5361, + 0.9985, + 0.366, + 0.6959, + 0.9553, + 0.5608, + 0.8795, + 0.2195, + 0.0604, + 0.8503, + 0.686, + 0.725, + 0.4708, + 0.7091, + 0.9569, + 0.4518, + 0.6796, + 0.4986, + 0.9643, + 0.3762, + 0.1711, + 0.5126, + 0.2762, + 0.937, + 0.4244, + 0.8171, + 0.636, + 0.8096, + 0.1355, + 0.7091, + 0.5204, + 0.6872, + 0.2084, + 0.6889, + 0.1651, + 0.2817, + 0.9849, + 0.7938, + 0.6577, + 0.1228, + 0.3532, + 0.5267, + 0.8292, + 0.0687, + 0.048, + 0.7414, + 0.4939, + 0.5129, + 0.9737, + 0.784, + 0.2519, 0.812, - 0.676, - 0.6738, - 0.2051, - 0.6097, - 0.2007, + 0.2997, + 0.8634, 0.7288, - 0.9613, - 0.0396, + 0.5043, + 0.6152, + 0.7733, + 0.0619, + 0.1181, + 0.2387, + 0.7625, + 0.7751, + 0.0848, + 0.1948, + 0.4104, + 0.5872, + 0.4654, + 0.5268, + 0.8918, + 0.7434, + 0.3919, + 0.4696, + 0.6309, + 0.3213, + 0.0787, + 0.6587, + 0.519, + 0.3992, + 0.5455, + 0.2308, + 0.6653, + 0.6057, + 0.4432, + 0.8642, + 0.8843, + 0.2028, + 0.832, + 0.6062, + 0.6628, + 0.4271, + 0.7227, + 0.7376, + 0.7488, + 0.0221, + 0.3473, + 0.3018, + 0.5276, + 0.732, + 0.9047, + 0.7624, + 0.5955, + 0.7951, + 0.2727, + 0.7201, + 0.004, + 0.582, + 0.7336, + 0.4958, + 0.7723, + 0.1734, + 0.7455, + 0.6806, + 0.8108, + 0.6739, 0.945, - 0.8849, - 0.5662, - 0.2087, - 0.0777, - 0.3651, - 0.4394, - 0.8387, - 0.6072, - 0.9741, - 0.9668, - 0.6752, - 0.2644, - 0.1604, - 0.0752, - 0.1121, - 0.6475, - 0.3829, - 0.3948, - 0.9238, - 0.7333, - 0.7497, - 0.7894, - 0.3254, - 0.3055, - 0.1176, - 0.9798, - 0.8097, - 0.026, - 0.305, - 0.7656, - 0.8794, - 0.7151, - 0.8838, - 0.6929, - 0.584, - 0.1797, - 0.1425, - 0.6225, - 0.2025, - 0.0201, - 0.1028, - 0.6649, - 0.8939, - 0.3736, - 0.793, - 0.6252, - 0.3527, - 0.994, - 0.6874, - 0.538, - 0.7937, - 0.5886, - 0.5303, - 0.2272, - 0.1953, - 0.1713, - 0.7852, - 0.2338, - 0.6285, - 0.1174, - 0.2533, - 0.6132, - 0.9151, - 0.9602, - 0.4136, - 0.0385, - 0.0751, - 0.269, - 0.7773, - 0.6473, - 0.0863, - 0.3032, - 0.0332, - 0.6257, - 0.3241, - 0.6834, - 0.5789, - 0.3159, - 0.8244, - 0.4548, - 0.2084, - 0.2348, - 0.1197, - 0.7124, - 0.6706, - 0.3731, - 0.2126, - 0.2069, - 0.6621, - 0.8713, - 0.2478, - 0.2565, - 0.2879, - 0.1972, - 0.4847, - 0.8538, - 0.3059, - 0.2708, - 0.217, - 0.9793, - 0.6894, - 0.5866, - 0.224, - 0.0572, - 0.0986, - 0.1261, - 0.9158, - 0.3822, - 0.4372, - 0.1028, - 0.7966, - 0.3071, - 0.9189, - 0.0215, - 0.2475, - 0.9701, - 0.1338, - 0.469, - 0.0376, - 0.6928, - 0.6511, - 0.5046, - 0.4484, - 0.6389, - 0.1857, - 0.8746, - 0.7959, - 0.4632, - 0.4405, - 0.9037, - 0.7565, - 0.0069, - 0.2254, - 0.7849, - 0.3111, - 0.1053, - 0.5275, - 0.6346, - 0.3218, - 0.1893, - 0.7277, - 0.2927, - 0.9832, - 0.9611, - 0.2775, - 0.4056, - 0.0644, - 0.0349, - 0.3712, - 0.6499, - 0.0806, - 0.3418, - 0.1978, - 0.1844, - 0.2013, - 0.9612, - 0.8779, - 0.0677, - 0.8483, - 0.3464, - 0.283, - 0.8033, - 0.6235, - 0.7624, - 0.8323, - 0.5868, - 0.2975, - 0.8043, - 0.6922, - 0.8196, - 0.0778, - 0.4472, - 0.8415, + 0.4777, + 0.5136, + 0.0593, + 0.4628, + 0.4332, + 0.0217, + 0.4993, + 0.4971, + 0.097, + 0.0211, 0.4268, + 0.1052, + 0.5188, + 0.2701, + 0.627, + 0.9761, + 0.0622, + 0.4977, + 0.1093, + 0.3934, + 0.1499, + 0.6901, + 0.9055, + 0.7455, + 0.1318, + 0.1125, + 0.3003, + 0.6193, + 0.6965, + 0.2254, + 0.6902, + 0.5057, + 0.206, + 0.9026, + 0.6753, + 0.5208, + 0.0971, + 0.0768, + 0.2611, + 0.9048, + 0.1079, + 0.5676, + 0.0856, + 0.2964, + 0.3567, + 0.4734, + 0.494, + 0.6305, + 0.6697, + 0.3476, + 0.8892, + 0.0968, + 0.4329, + 0.8692, + 0.8189, + 0.6478, + 0.8804, + 0.4088, + 0.2546, + 0.4354, + 0.494, + 0.3828, + 0.8952, + 0.7535, + 0.5155, + 0.2928, + 0.8976, + 0.0902, + 0.3392, + 0.4106, + 0.259, + 0.5103, + 0.229, + 0.3265, + 0.6442, + 0.3275, + 0.5115, + 0.1727, + 0.675, + 0.9361, + 0.6264, + 0.104, + 0.467, + 0.4071, + 0.4112, + 0.6472, + 0.5128, + 0.0232, + 0.2815, + 0.4478, + 0.5295, + 0.3247, 0.8621, - 0.5182, - 0.2386, - 0.4218, - 0.8078, - 0.3686, - 0.1795, - 0.2326, - 0.2533, - 0.8528, - 0.6019, - 0.3066, - 0.0257, - 0.6675, - 0.6888, - 0.7801, - 0.4371, - 0.3556, - 0.3133, - 0.0001, - 0.7042, - 0.4415, - 0.3343, - 0.9555, - 0.5782, - 0.5334, - 0.8236, - 0.2966, - 0.7923, - 0.848, + 0.5539, + 0.201, + 0.4138, + 0.5216, + 0.168, + 0.467, + 0.3621, + 0.7939, + 0.7111, + 0.3336, + 0.4102, + 0.851, + 0.0686, + 0.4607, + 0.2608, + 0.0665, + 0.4372, + 0.5829, + 0.6631, + 0.6345, + 0.718, + 0.5336, + 0.514, + 0.9897, + 0.5705, + 0.5579, + 0.9807, + 0.9333, + 0.1025, + 0.7691, + 0.0475, + 0.9884, + 0.8933, + 0.0177, + 0.7779, + 0.0689, + 0.3435, + 0.2261, + 0.3967, + 0.2152, + 0.0417, + 0.8871, + 0.5737, + 0.992, + 0.6732, + 0.1346, + 0.049, + 0.805, + 0.3251, + 0.7566, + 0.1016, + 0.1962, + 0.7558, + 0.3054, + 0.9575, + 0.8276, + 0.5499, + 0.5456, + 0.9474, + 0.7249, + 0.5134, + 0.2008, + 0.054, + 0.1734, + 0.22, + 0.0128, + 0.3412, + 0.2078, + 0.2358, + 0.9893, + 0.7231, + 0.6059, + 0.4596, + 0.2649, + 0.7383, + 0.8818, + 0.7316, + 0.0567, + 0.0463, + 0.9533, + 0.9038, + 0.0584, + 0.8925, + 0.9069, + 0.2167, + 0.1672, + 0.9007, + 0.5128, 0.9891, - 0.3425, - 0.6121, - 0.0943, - 0.354, - 0.2716, - 0.0324, - 0.803, - 0.2562, - 0.5546, - 0.7971, - 0.3978, - 0.9356, - 0.0444, - 0.4092, - 0.4298, - 0.8647, + 0.8675, + 0.1818, + 0.6099, + 0.8824, + 0.0575, + 0.3497, + 0.9864, + 0.5991, + 0.0837, + 0.507, + 0.6931, + 0.1943, + 0.3903, + 0.0599, + 0.688, + 0.6721, + 0.6605, + 0.331, + 0.7095, + 0.3315, + 0.4171, + 0.9824, + 0.1447, + 0.123, + 0.7065, + 0.3084, + 0.2644, + 0.2389, + 0.3354, + 0.198, + 0.2708, + 0.3158, + 0.5926, 0.7928, - 0.441, - 0.1241, - 0.4154, - 0.7983, - 0.1647, - 0.3498, - 0.0884, - 0.886, - 0.1651, - 0.3087, - 0.2765, + 0.9038, + 0.6903, + 0.7553, + 0.4123, + 0.1571, + 0.5726, + 0.1528, + 0.798, + 0.7424, + 0.6784, + 0.31, + 0.5499, + 0.8538, + 0.4317, + 0.2941, + 0.7282, + 0.4781, + 0.3258, + 0.0052, + 0.0385, + 0.6754, + 0.23, + 0.0123, + 0.1615, + 0.2952, + 0.5165, + 0.9035, + 0.0665, + 0.667, + 0.556, + 0.1325, + 0.3266, + 0.2519, + 0.2003, + 0.2574, + 0.2963, + 0.9006, + 0.242, + 0.6731, + 0.3231, + 0.557, + 0.0538, + 0.9077, + 0.2751, + 0.6289, + 0.5464, + 0.9938, + 0.4591, + 0.4197, + 0.6874, + 0.2679, + 0.2925, + 0.4246, + 0.9881, + 0.6594, + 0.9088, + 0.7838, + 0.8013, + 0.4809, + 0.2876, + 0.5226, + 0.0787, + 0.95, + 0.0464, + 0.8427, 0.2849, - 0.5139, - 0.8849, - 0.4849, - 0.7762, - 0.5268, - 0.669, - 0.532, - 0.1103, - 0.9739, - 0.6079, - 0.6457, - 0.7949, - 0.7674, - 0.7555, - 0.5248, - 0.7605, - 0.0939, - 0.3489, - 0.7043, - 0.2478, - 0.7109, - 0.0026, - 0.0244, - 0.0567, - 0.6775, - 0.6789, - 0.522, - 0.515, - 0.8052, - 0.4416, - 0.9237, - 0.8433, - 0.8052, - 0.5841, - 0.1454, - 0.3849, - 0.4873, - 0.215, - 0.416, - 0.915, - 0.0366, - 0.0453, - 0.0455, - 0.8851, - 0.4432, - 0.3221, - 0.2459, - 0.0657, - 0.1213, - 0.467, - 0.6271, - 0.2322, - 0.8215, - 0.0119, - 0.6711, - 0.5411, - 0.5147, - 0.5448, - 0.3472, - 0.7866, - 0.5763, - 0.4718, - 0.05, - 0.1227, - 0.3933, - 0.5914, - 0.2514, - 0.9265, - 0.0393, - 0.4962, - 0.2766, - 0.6464, - 0.8745, - 0.9409, - 0.8208, - 0.5484, - 0.25, - 0.8062, - 0.7286, - 0.3022, - 0.0129, - 0.3115, - 0.871, - 0.5738, - 0.8574, - 0.7678, - 0.7616, - 0.2434, - 0.6014, - 0.4003, - 0.1325, - 0.2339, - 0.6582, - 0.8182, - 0.4182, - 0.7879, - 0.8704, - 0.7211, - 0.6136, - 0.1557, - 0.9266, - 0.3147, - 0.8453, - 0.27, - 0.1398, - 0.2014, - 0.0606, - 0.8165, - 0.5602, - 0.2029, - 0.7037, - 0.7608, - 0.8834, - 0.0766, - 0.3522, - 0.3731, - 0.514, - 0.1704, - 0.6064, - 0.3067, - 0.9249, - 0.0517, - 0.8211, - 0.9417, - 0.9756, - 0.2769, - 0.6529, - 0.9159, - 0.5543, - 0.4349, - 0.6263, - 0.9299, - 0.1049, - 0.4172, - 0.3527, - 0.2634, - 0.0759, - 0.2919, - 0.5054, - 0.6346, - 0.2211, - 0.4802, - 0.2018, - 0.3644, - 0.6906, - 0.6842, - 0.4792, - 0.574, - 0.3823, - 0.2674, - 0.6314, - 0.9772, - 0.5424, - 0.7217, - 0.749, - 0.3845, - 0.6032, - 0.4835, - 0.8835, - 0.545, - 0.524, - 0.9299, - 0.3183, - 0.1791, - 0.2573, - 0.5427, - 0.0377, - 0.872, - 0.2353, - 0.683, - 0.8935, - 0.3399, - 0.1615, - 0.8168, - 0.1727, - 0.155, - 0.8974, - 0.3425, - 0.2833, - 0.4403, - 0.9676, - 0.5686, - 0.4967, - 0.1612, - 0.3007, - 0.1461, - 0.9798, - 0.0201, - 0.2532, - 0.0186, - 0.0465, - 0.8027, - 0.1292, - 0.4455, - 0.3016, - 0.7246, - 0.1247, - 0.8825, - 0.7212, - 0.368, - 0.2093, - 0.5008, - 0.2759, - 0.7913, - 0.3897, - 0.993, - 0.6132, - 0.3413, - 0.5968, - 0.1293, - 0.5973, - 0.2418, - 0.0193, - 0.1941, - 0.922, - 0.0856, - 0.9189, - 0.3734, - 0.7935, - 0.2564, - 0.4879, - 0.4498, - 0.1757, - 0.7874, - 0.6409, - 0.1157, - 0.6438, - 0.0567, - 0.3149, - 0.5204, - 0.7045, - 0.2793, - 0.9474, - 0.7236, + 0.4937, + 0.7119, + 0.3954, + 0.7484, + 0.3348, + 0.5148, + 0.9991, + 0.5637, + 0.3818, + 0.1681, + 0.242, + 0.9885, + 0.4996, + 0.6915, + 0.7533, + 0.3151, + 0.4572, + 0.6207, + 0.7094, + 0.7143, + 0.0429, + 0.7498, + 0.4544, + 0.165, + 0.1648, + 0.8283, + 0.3957, + 0.8832, + 0.5469, + 0.7883, + 0.8479, + 0.6825, + 0.3277, + 0.5704, + 0.794, + 0.69, + 0.6017, + 0.8586, + 0.1689, + 0.8089, + 0.5965, + 0.9256, + 0.53, + 0.7984, + 0.638, + 0.3301, + 0.284, + 0.955, + 0.9493, + 0.0921, + 0.1158, + 0.6689, + 0.3378, + 0.6105, + 0.5696, + 0.3619, + 0.4249, + 0.968, + 0.2409, + 0.5859, + 0.7808, + 0.2095, + 0.4842, + 0.5688, + 0.7954, + 0.0891, + 0.527, + 0.7298, + 0.2598, + 0.2116, + 0.3513, + 0.3129, 0.1498, - 0.6524, - 0.7761, - 0.6089, - 0.5633, - 0.4399, - 0.4209, - 0.8606, - 0.828, - 0.5402, - 0.2772, - 0.3491, - 0.4737, - 0.1781, - 0.7468, - 0.2249, - 0.3278, - 0.1341, - 0.7088, - 0.8894, - 0.4293, - 0.2882, - 0.4873, - 0.3699, - 0.7605, - 0.6019, - 0.4333, - 0.4823, - 0.4113, - 0.6419, - 0.4288, - 0.9372, - 0.2538, - 0.5257, - 0.8923, - 0.605, - 0.4213, - 0.5556, - 0.3562, - 0.1631, - 0.2888, - 0.8296, - 0.0904, - 0.0737, - 0.9205, - 0.6588, - 0.2011, - 0.8251, - 0.505, - 0.7733, - 0.7176, - 0.8379, - 0.6652, - 0.266, - 0.7091, - 0.7535, - 0.8519, - 0.5369, - 0.2646, - 0.7444, - 0.0613, - 0.1444, - 0.2326, - 0.0257, - 0.0483, - 0.6289, - 0.3456, - 0.0663, - 0.1163, - 0.3499, - 0.1672, - 0.6922, - 0.2833, - 0.2735, - 0.5793, - 0.0655, - 0.3798, - 0.3276, - 0.0331, - 0.2619, - 0.3671, - 0.921, - 0.8579, - 0.516, - 0.1062, - 0.0579, - 0.7215, - 0.4502, - 0.3064, - 0.4386, - 0.4452, - 0.1226, - 0.7463, - 0.9668, - 0.1495, - 0.2818, + 0.2614, + 0.8139, + 0.4465, + 0.6103, + 0.7963, + 0.8544, + 0.5307, + 0.5575, + 0.0726, + 0.4937, + 0.0527, + 0.5948, + 0.3354, + 0.204, + 0.8097, + 0.6641, + 0.0821, + 0.3552, + 0.9964, + 0.6841, + 0.698, + 0.6569, + 0.2798, + 0.6327, + 0.0156, + 0.1177, + 0.7095, + 0.5274, + 0.0963, + 0.9636, + 0.4449, + 0.3612, + 0.8043, + 0.4638, + 0.6492, + 0.623, + 0.8979, + 0.297, 0.2589, - 0.6091, - 0.987, - 0.3713, - 0.3337, - 0.2644, - 0.5702, - 0.4525, - 0.5251, - 0.4023, - 0.8684, - 0.4582, - 0.2154, - 0.4533, - 0.4996, - 0.739, - 0.2201, - 0.9155, - 0.8393, - 0.5981, - 0.597, - 0.9912, - 0.7169, - 0.7606, - 0.8259, - 0.5022, - 0.3805, - 0.2522, - 0.1427, - 0.5944, - 0.7358, - 0.8511, - 0.0106, - 0.6824, - 0.2124, - 0.2565, - 0.1323, - 0.3719, - 0.5494, - 0.4391, - 0.9934, - 0.9641, - 0.6473, - 0.4102, - 0.7825, - 0.3162, - 0.0502, - 0.1718, - 0.3013, - 0.9344, - 0.4621, - 0.1135, - 0.797, - 0.9239, - 0.7885, - 0.7676, - 0.659, - 0.5089, - 0.9842, - 0.208, - 0.8748, - 0.8855, - 0.7515, - 0.3168, - 0.4107, - 0.9946, - 0.0522, - 0.2368, - 0.8373, - 0.5968, - 0.2272, - 0.6833, - 0.0263, - 0.0567, - 0.981, - 0.4238, - 0.0783, - 0.5555, - 0.577, - 0.061, - 0.0725, - 0.4091, - 0.785, - 0.7023, - 0.1365, - 0.6536, - 0.633, - 0.5205, - 0.2294, - 0.3626, + 0.9317, + 0.3848, + 0.8426, + 0.8133, + 0.2192, + 0.0058, + 0.0344, + 0.8425, + 0.4099, + 0.3891, + 0.1861, + 0.5757, + 0.6182, + 0.0781, + 0.6975, 0.1121, - 0.3093, - 0.5263, - 0.1662, - 0.1352, - 0.4327, - 0.3434, - 0.4072, - 0.9157, - 0.745, - 0.715, - 0.2552, - 0.4537, - 0.5127, - 0.2164, - 0.6838, - 0.1427, - 0.5886, - 0.7025, - 0.4767, - 0.1771, - 0.5514, - 0.4379, - 0.0582, - 0.9704, - 0.1063, - 0.4404, - 0.2332, - 0.0309, - 0.9616, - 0.0497, - 0.134, - 0.0687, - 0.2824, - 0.3386, - 0.824, - 0.6642, - 0.1497, - 0.928, - 0.3306, - 0.6878, - 0.2756, - 0.9947, - 0.4662, - 0.4459, - 0.6361, - 0.0776, - 0.7618, - 0.966, - 0.0251, - 0.2953, - 0.0052, - 0.0299, - 0.813, - 0.3544, - 0.2173, - 0.5337, - 0.0155, - 0.4531, - 0.9537, - 0.2304, - 0.2316, - 0.8238, - 0.7448, - 0.2274, - 0.1338, - 0.1487, - 0.7835, - 0.9471, - 0.2444, - 0.0356, - 0.3568, - 0.0969, - 0.4849, - 0.497, - 0.1253, - 0.6044, - 0.4068, - 0.1156, - 0.6727, - 0.1837, - 0.1522, - 0.1799, - 0.9825, - 0.6417, - 0.3254, - 0.9091, - 0.9153, - 0.6374, - 0.3723, - 0.8792, - 0.477, - 0.7313, - 0.6009, - 0.5342, - 0.1614, - 0.8216, - 0.801, - 0.7278, - 0.3028, - 0.8411, - 0.2836, - 0.0771, - 0.8827, - 0.9628, - 0.4085, - 0.0957, - 0.6176, - 0.8424, - 0.878, - 0.6625, - 0.7789, - 0.376, - 0.5037, - 0.0755, - 0.537, - 0.6626, - 0.2597, - 0.8318, - 0.319, - 0.8032, - 0.5155, - 0.0631, - 0.5073, - 0.2159, - 0.8568, - 0.6604, - 0.0986, - 0.7365, - 0.7416, - 0.505, - 0.7403, - 0.076, - 0.3097, - 0.6594, - 0.1644, - 0.6046, - 0.7112, - 0.205, - 0.3963, - 0.2712, - 0.8145, - 0.1992, - 0.8369, - 0.9657, - 0.4037, - 0.8235, - 0.1492, - 0.6548, - 0.1888, - 0.2772, - 0.5653, - 0.1602, + 0.009, + 0.3836, + 0.8785, + 0.2612, + 0.08, + 0.596, + 0.9069, + 0.9683, + 0.5493, + 0.0394, + 0.6293, + 0.1075, + 0.2786, + 0.1666, + 0.0534, + 0.8335, + 0.728, + 0.5286, + 0.1921, + 0.1579, + 0.643, + 0.7805, + 0.4548, + 0.3638, + 0.4108, + 0.9221, + 0.81, + 0.9434, + 0.049, + 0.2257, + 0.0731, + 0.9071, + 0.6227, + 0.9708, + 0.8775, + 0.3677, 0.1136, - 0.2911, - 0.9738, - 0.488, - 0.95, - 0.5325, - 0.8168, - 0.2054, - 0.1581, - 0.1949, - 0.6066, - 0.4493, - 0.7046, - 0.1068, - 0.0423, - 0.8342, - 0.1689, - 0.641, - 0.8061, - 0.932, - 0.5587, - 0.0322, - 0.7278, - 0.3311, - 0.1502, - 0.0148, - 0.7905, - 0.2917, - 0.3045, - 0.0993, - 0.2323, - 0.0105, - 0.2052, - 0.4085, - 0.7527, - 0.2363, - 0.9976, - 0.1094, - 0.2843, - 0.4122, - 0.7679, - 0.0918, - 0.7901, - 0.6161, - 0.8711, - 0.1125, - 0.827, - 0.1917, - 0.6646, - 0.2397, - 0.7446, - 0.6696, - 0.4965, - 0.3926, - 0.4113, - 0.1742, - 0.8148, - 0.8821, - 0.54, - 0.135, - 0.6288, - 0.1732, - 0.0205, - 0.1854, - 0.0194, - 0.4562, - 0.5566, - 0.1621, - 0.9105, - 0.3423, - 0.5775, - 0.1871, - 0.1215, - 0.6296, - 0.6006, - 0.7794, - 0.5727, - 0.1509, - 0.7533, - 0.5477, - 0.1622, - 0.0168, - 0.9526, - 0.1133, - 0.3772, - 0.7952, - 0.6667, - 0.5893, - 0.437, - 0.6094, - 0.381, - 0.5975, - 0.7369, - 0.1314, - 0.0659, - 0.0591, - 0.9784, - 0.7434, - 0.7844, - 0.6206, - 0.9868, - 0.8532, - 0.0665, - 0.913, - 0.6311, - 0.4923, - 0.5916, - 0.5518, - 0.3201, - 0.0352, - 0.1028, - 0.1675, - 0.2953, - 0.6955, - 0.1437, - 0.9583, - 0.5543, - 0.6639, - 0.0609, - 0.4906, - 0.671, - 0.7398, - 0.4998, - 0.9628, - 0.3234, - 0.0547, + 0.8411, + 0.367, + 0.6459, + 0.6689, + 0.6001, + 0.2701, + 0.1262, + 0.3451, + 0.1934, + 0.2342, + 0.353, + 0.3366, + 0.1867, + 0.0541, + 0.8473, + 0.7867, + 0.3374, + 0.4593, + 0.428, + 0.7815, + 0.9956, + 0.2676, + 0.7125, + 0.8816, + 0.9203, + 0.7728, + 0.247, + 0.7784, + 0.4076, + 0.9495, + 0.3715, + 0.421, + 0.2175, + 0.7803, + 0.1262, + 0.1631, + 0.004, + 0.3533, + 0.3688, + 0.9028, + 0.0478, + 0.0089, + 0.9581, + 0.9647, + 0.1435, + 0.439, + 0.3546, + 0.6377, + 0.1597, + 0.7668, + 0.4903, + 0.1407, + 0.7477, + 0.7235, + 0.704, + 0.4105, + 0.3527, + 0.5418, + 0.5827, + 0.4134, 0.8502, - 0.6379, - 0.6647, - 0.212, - 0.8304, - 0.858, - 0.0618, - 0.8892, - 0.7245, - 0.0071, - 0.2589, - 0.652, - 0.0837, - 0.0595, - 0.1464, - 0.7942, - 0.841, - 0.5836, - 0.1013, - 0.7371, - 0.1336, - 0.9882, - 0.99, - 0.9035, - 0.2842, - 0.705, - 0.8543, - 0.2668, - 0.3646, - 0.4582, - 0.6099, - 0.7098, - 0.9009, - 0.7883, - 0.6474, - 0.6497, - 0.5023, - 0.1638, - 0.7824, - 0.4625, - 0.2397, - 0.2355, - 0.5948, - 0.6678, - 0.0075, - 0.268, - 0.6546, - 0.5394, - 0.0734, - 0.0349, - 0.3995, - 0.5894, - 0.8682, - 0.3806, - 0.8394, + 0.3482, + 0.6434, + 0.3557, + 0.9295, + 0.7254, + 0.2934, + 0.5633, + 0.3758, + 0.9564, + 0.0081, + 0.3725, + 0.5554, + 0.2286, + 0.7092, + 0.5747, + 0.245, + 0.0495, + 0.4122, + 0.591, + 0.0851, + 0.1489, + 0.0418, + 0.5952, + 0.8376, + 0.7309, + 0.0039, + 0.8661, + 0.7811, + 0.3714, + 0.6349, + 0.1886, + 0.7155, + 0.6882, + 0.9589, + 0.4067, + 0.7046, + 0.4566, + 0.4307, + 0.1706, + 0.2856, + 0.4794, + 0.8094, + 0.7502, + 0.1571, + 0.8481, + 0.382, + 0.8941, + 0.0917, + 0.6579, + 0.9365, + 0.0209, + 0.9244, + 0.1597, + 0.4021, + 0.0214, + 0.8302, + 0.4772, 0.1371, - 0.6181, - 0.3247, - 0.3879, - 0.6762, - 0.7077, - 0.7523, - 0.0573, - 0.1396, - 0.1193, - 0.6761, - 0.8934, - 0.6418, - 0.2762, - 0.6839, - 0.1677, - 0.538, + 0.6323, + 0.7131, + 0.7006, + 0.7226, + 0.3981, + 0.9363, + 0.2536, + 0.8849, + 0.1754, + 0.5231, + 0.1453, + 0.5421, + 0.6734, + 0.7572, + 0.4566, + 0.6814, + 0.9159, + 0.6211, + 0.2943, + 0.1918, + 0.497, + 0.296, + 0.309, + 0.8084, + 0.2071, + 0.5499, + 0.3483, + 0.7313, + 0.5921, + 0.9821, + 0.6291, + 0.9963, + 0.2581, + 0.9744, + 0.6799, + 0.37, + 0.6355, + 0.0166, + 0.3066, + 0.5942, + 0.3843, + 0.7156, + 0.0211, + 0.5768, 0.8817, - 0.5394, - 0.0911, - 0.0319, - 0.9366, - 0.0917, - 0.8043, - 0.0477, - 0.9142, - 0.8637, - 0.2855, - 0.0221, - 0.3454, - 0.1511, - 0.4682, - 0.6285, - 0.7832, - 0.3396, - 0.1909, - 0.1163, - 0.0512, - 0.7151, - 0.1213, - 0.0338, - 0.167, - 0.2209, - 0.5759, - 0.4706, - 0.255, - 0.9425, - 0.2683, - 0.2707, - 0.6491, - 0.1454, - 0.7754, - 0.6403, - 0.265, - 0.3842, - 0.4312, - 0.5327, - 0.8317, - 0.6285, - 0.2033, - 0.5011, - 0.2108, - 0.9009, - 0.7132, - 0.3728, - 0.9915, - 0.471, - 0.9323, - 0.7854, - 0.4284, - 0.4643, - 0.8757, - 0.6017, - 0.5777, - 0.5227, - 0.1483, - 0.2765, - 0.1465, - 0.5552, - 0.5443, - 0.6223, - 0.2785, - 0.848, - 0.1509, - 0.1237, - 0.1638, - 0.8517, - 0.0408, - 0.3133, - 0.4162, - 0.047, - 0.2494, - 0.7797, - 0.8303, - 0.1434, - 0.9703, - 0.6345, - 0.5949, - 0.124, - 0.251, - 0.856, - 0.3198, - 0.3931, - 0.882, - 0.234, - 0.1338, - 0.6124, - 0.3461, - 0.7265, - 0.0544, - 0.3133, - 0.8941, - 0.6553, - 0.6597, - 0.5947, - 0.5291, - 0.24, - 0.851, - 0.5567, - 0.0651, - 0.9752, - 0.8453, - 0.8089, - 0.8414, - 0.5549, - 0.081, - 0.4151, - 0.7019, - 0.1425, - 0.7984, - 0.7536, - 0.2193, - 0.9326, - 0.8671, - 0.159, - 0.4822, - 0.283, - 0.2749, - 0.6651, - 0.8994, - 0.6184, - 0.9525, - 0.7203, - 0.9074, - 0.5291, - 0.5554, - 0.064, - 0.7299, - 0.7976, - 0.1503, - 0.1542, - 0.2448, - 0.4869, - 0.3051, - 0.5615, - 0.9419, - 0.7034, - 0.2084, - 0.3608, - 0.3749, - 0.0788, - 0.2591, - 0.6994, - 0.41, - 0.6745, - 0.4841, - 0.1488, - 0.6435, - 0.6913, - 0.8707, - 0.178, - 0.2659, - 0.1277, - 0.7496, - 0.5069, - 0.2745, - 0.7301, - 0.2361, - 0.5033, - 0.4967, - 0.6461, - 0.6296, - 0.1349, - 0.1654, - 0.2902, - 0.6905, - 0.0033, - 0.9275, - 0.6694, - 0.6216, - 0.1065, - 0.0847, - 0.1043, - 0.5943, - 0.9587, - 0.2529, - 0.8356, - 0.3917, - 0.0161, - 0.1137, - 0.4611, - 0.3334, - 0.3659, - 0.3846, - 0.249, - 0.2339, - 0.3681, - 0.0844, - 0.2605, - 0.6041, - 0.2358, - 0.6661, - 0.1076, - 0.4136, + 0.5625, + 0.457, + 0.6835, + 0.1083, + 0.352, + 0.6026, + 0.7771, + 0.3652, + 0.6524, + 0.2831, + 0.7396, + 0.7462, + 0.1958, + 0.5644, + 0.9669, + 0.4271, + 0.0575, + 0.8578, + 0.776, + 0.3559, + 0.6613, 0.1704, - 0.7114, - 0.5058, - 0.2848, - 0.5489, - 0.3795, - 0.5563, - 0.9777, - 0.9256, - 0.8355, - 0.5277, - 0.9336, - 0.5304, - 0.4454, - 0.7943, - 0.6728, - 0.5773, - 0.8801, - 0.0769, - 0.6786, - 0.9313, - 0.2659, - 0.1236, - 0.8391, - 0.0713, - 0.8202, - 0.3908, - 0.6464, - 0.6118, - 0.2125, - 0.9333, - 0.2766, - 0.5151, - 0.9737, - 0.6364, - 0.031, - 0.2612, - 0.9004, - 0.6074, - 0.332, - 0.4483, - 0.6716, - 0.6406, - 0.4157, - 0.5002, - 0.619, - 0.9387, - 0.9993, - 0.0082, - 0.8494, - 0.5848, - 0.8912, - 0.1267, - 0.7305, - 0.9686, - 0.1162, - 0.8523, - 0.4818, - 0.7314, - 0.3953, - 0.9375, - 0.5675, - 0.5235, - 0.548, - 0.5312, - 0.4621, - 0.869, - 0.6926, - 0.2119, - 0.1035, - 0.7302, - 0.4647, - 0.935, - 0.6406, - 0.9161, - 0.3985, - 0.4737, - 0.5253, - 0.1785, - 0.7058, - 0.3376, - 0.5311, - 0.6515, - 0.5821, - 0.4652, - 0.903, - 0.9968, - 0.4489, - 0.1563, - 0.2355, - 0.365, - 0.1073, - 0.098, - 0.8906, - 0.014, - 0.3881, - 0.4649, - 0.6123, - 0.1839, - 0.9081, - 0.2784, - 0.5708, - 0.8096, - 0.4092, - 0.3037, - 0.3192, - 0.1593, - 0.1042, - 0.1411, - 0.3027, - 0.829, - 0.9447, - 0.4521, - 0.7259, - 0.3202, - 0.1017, - 0.1446, - 0.6958, - 0.3983, - 0.3845, - 0.295, - 0.1275, - 0.5795, - 0.5579, - 0.2121, - 0.3962, - 0.8331, - 0.055, - 0.5276, - 0.0347, - 0.6318, - 0.5243, - 0.5403, - 0.8375, - 0.5531, - 0.7645, - 0.8614, - 0.4982, - 0.4364, - 0.4586, - 0.9132, - 0.4473, - 0.0736, - 0.9758, - 0.3311, - 0.787, - 0.7609, - 0.0517, - 0.3081, - 0.513, - 0.3433, - 0.6268, - 0.2028, - 0.0954, - 0.5152, - 0.243, - 0.4058, - 0.6683, - 0.6636, - 0.4156, - 0.1432, - 0.9871, - 0.4421, - 0.6572, - 0.2693, - 0.3136, - 0.9729, - 0.5471, - 0.8583, - 0.2616, - 0.7652, - 0.4861, - 0.345, - 0.7432, - 0.4332, - 0.6102, - 0.741, - 0.0417, - 0.2657, - 0.7329, - 0.4789, + 0.884, + 0.7526, + 0.5647, + 0.4134, + 0.6148, + 0.7091, + 0.4795, + 0.6077, + 0.8949, 0.2257, - 0.9448, - 0.4941, - 0.2783, - 0.7114, - 0.1464, - 0.8436, - 0.3079, - 0.5426, - 0.9362, - 0.8089, - 0.7611, - 0.0664, - 0.5183, - 0.7682, - 0.6136, - 0.0687, - 0.0254, - 0.5308, - 0.4185, - 0.2271, - 0.0523, - 0.13, - 0.4869, - 0.3637, - 0.7342, - 0.6625, - 0.3067, - 0.2586, - 0.1725, - 0.7885, - 0.73, - 0.5136, - 0.6156, - 0.9992, - 0.6624, - 0.1832, - 0.362, - 0.2979, - 0.5966, - 0.3131, - 0.2895, - 0.9018, - 0.5379, - 0.6977, - 0.0506, - 0.2665, - 0.4074, - 0.3096, - 0.5759, - 0.4021, - 0.0574, - 0.3427, - 0.4288, - 0.4398, - 0.2137, - 0.7029, - 0.5787, - 0.5751, - 0.2744, - 0.6504, - 0.8696, - 0.3018, - 0.2771, - 0.9035, - 0.6304, - 0.4819, - 0.2071, - 0.6464, - 0.0193, - 0.0856, - 0.7712, - 0.87, - 0.9981, - 0.1587, - 0.6529, - 0.4849, - 0.2768, - 0.9622, - 0.3331, - 0.859, - 0.3533, - 0.4085, - 0.0845, - 0.8069, - 0.873, - 0.0249, - 0.6651, - 0.0712, - 0.6827, - 0.6329, - 0.0331, - 0.0867, - 0.1815, - 0.741, - 0.4317, - 0.475, - 0.3473, - 0.4943, - 0.0207, - 0.2376, - 0.7167, - 0.1118, - 0.5006, - 0.7782, - 0.9718, - 0.9171, - 0.5538, - 0.5583, - 0.0944, - 0.2165, - 0.7794, - 0.1341, - 0.1608, - 0.3703, - 0.0046, - 0.7813, - 0.4022, - 0.7622, - 0.1346, - 0.5684, - 0.2426, - 0.9727, - 0.8964, - 0.1185, - 0.2217, - 0.1944, - 0.8273, - 0.0463, - 0.5601, - 0.2812, - 0.6735, - 0.189, - 0.4579, - 0.828, - 0.817, - 0.0758, - 0.3117, - 0.1713, - 0.3199, - 0.0259, - 0.5276, - 0.3858, - 0.764, - 0.4069, - 0.8903, - 0.8819, - 0.8673, - 0.2201, - 0.7222, - 0.6427, - 0.7895, - 0.1733, - 0.3797, - 0.4604, - 0.01, - 0.8856, - 0.8935, - 0.1606, - 0.588, - 0.3234, - 0.1988, - 0.7432, - 0.4712, - 0.2949, - 0.4321, - 0.6393, - 0.2326, - 0.3399, - 0.7089, - 0.9137, - 0.9678, - 0.6206, - 0.243, - 0.1712, - 0.2379, - 0.0835, - 0.3437, - 0.177, - 0.533, - 0.3221, - 0.6698, - 0.9143, - 0.6355, - 0.5198, - 0.9339, - 0.2815, - 0.9047, - 0.0338, - 0.6502, - 0.2566, - 0.193, - 0.7198, - 0.3933, - 0.2569, - 0.0215, - 0.8643, - 0.5648, - 0.5514, - 0.6609, - 0.5044, - 0.4402, - 0.4599, - 0.8297, - 0.4689, - 0.255, - 0.4223, - 0.1312, - 0.6129, - 0.9436, - 0.7219, - 0.2362, - 0.617, - 0.4244, - 0.1259, - 0.546, - 0.1865, - 0.3834, - 0.8545, - 0.8002, - 0.9719, - 0.1737, - 0.4376, - 0.2535, - 0.8278, - 0.1191, - 0.8663, - 0.1941, - 0.1131, - 0.4891, - 0.6885, - 0.0597, - 0.5186, - 0.8317, - 0.5152, - 0.7248, - 0.5605, - 0.1776, - 0.2494, - 0.9245, - 0.876, - 0.0728, - 0.3121, - 0.0966, - 0.6586, - 0.0939, - 0.9962, - 0.0505, - 0.8271, - 0.9812, - 0.0136, - 0.1699, - 0.5349, - 0.3997, - 0.6104, + 0.9169, + 0.3241, + 0.3372, + 0.5537, + 0.0556, + 0.4496, + 0.457, + 0.1568, 0.676, - 0.6643, - 0.4277, - 0.8715, - 0.9611, - 0.954, - 0.518, - 0.4226, - 0.8766, - 0.3265, - 0.455, - 0.2108, - 0.3635, - 0.0133, - 0.1644, - 0.8594, - 0.6879, - 0.9007, - 0.7256, - 0.6457, - 0.614, - 0.8756, - 0.9773, - 0.0336, - 0.3062, - 0.1737, - 0.9608, - 0.5541, - 0.5257, - 0.5365, - 0.2361, - 0.3424, - 0.8556, - 0.0497, - 0.4815, - 0.963, - 0.3678, - 0.5089, - 0.4924, - 0.0357, - 0.9282, - 0.2622, - 0.1573, - 0.484, - 0.981, - 0.5018, - 0.097, - 0.5768, - 0.494, - 0.6564, - 0.8816, - 0.9262, - 0.9608, - 0.7275, - 0.9788, - 0.8083, - 0.6768, - 0.849, - 0.8715, - 0.7626, - 0.5918, + 0.3092, + 0.6075, + 0.3403, + 0.9666, + 0.2489, + 0.3428, + 0.9069, + 0.997, + 0.7497, + 0.3488, + 0.8637, + 0.2312, + 0.2549, + 0.637, + 0.9012, + 0.7514, + 0.3458, + 0.9168, + 0.6248, + 0.0983, + 0.5952, + 0.7093, + 0.7532, + 0.1928, + 0.1948, + 0.6044, + 0.9613, + 0.8289, + 0.799, + 0.4979, + 0.3479, + 0.7329, + 0.657, + 0.2063, + 0.7084, + 0.3991, + 0.8049, + 0.5624, + 0.7601, + 0.6226, + 0.0267, + 0.2346, + 0.9464, 0.4827, - 0.2961, - 0.8445, - 0.9873, - 0.1147, - 0.878, - 0.693, - 0.0003, - 0.9755, - 0.0313, - 0.2007, - 0.2494, - 0.3963, - 0.4799, - 0.1016, - 0.2834, - 0.6634, - 0.9035, - 0.5352, - 0.1222, - 0.1707, - 0.2144, - 0.719, - 0.3084, - 0.7073, - 0.9305, - 0.1779, - 0.8421, - 0.605, - 0.2232, - 0.6168, - 0.8945, - 0.0997, - 0.609, - 0.9928, - 0.7566, - 0.7761, - 0.6587, - 0.6972, - 0.7365, - 0.2386, - 0.4899, - 0.5825, - 0.0261, - 0.5429, - 0.4932, - 0.3373, - 0.0141, - 0.3482, - 0.906, - 0.4835, - 0.9366, - 0.3478, - 0.1991, - 0.2997, - 0.5608, - 0.2121, - 0.1161, + 0.4808, + 0.2037, + 0.0298, + 0.176, + 0.8308, + 0.7538, + 0.4981, + 0.0115, + 0.2461, + 0.8819, + 0.7014, + 0.1356, + 0.9306, + 0.669, + 0.7934, + 0.1887, + 0.0624, + 0.176, + 0.6271, + 0.8647, + 0.4696, + 0.5476, + 0.5971, + 0.5369, + 0.7449, + 0.1723, + 0.9574, + 0.9483, + 0.2288, + 0.025, + 0.3115, + 0.4905, + 0.7829, + 0.3256, + 0.6425, + 0.4316, + 0.5436, + 0.7696, + 0.248, + 0.5309, + 0.865, + 0.1389, + 0.1315, + 0.0794, + 0.162, + 0.4797, + 0.0915, + 0.7159, + 0.7557, + 0.0502, + 0.2157, + 0.6616, + 0.9367, + 0.8009, + 0.2899, + 0.5998, + 0.5386, + 0.2114, + 0.8067, + 0.0375, + 0.0129, + 0.6953, + 0.5344, + 0.6851, + 0.7059, + 0.3173, + 0.0218, + 0.1635, + 0.1654, + 0.5773, + 0.3386, + 0.5188, + 0.5964, + 0.8386, + 0.0301, + 0.348, + 0.9344, + 0.4638, + 0.2005, + 0.8915, + 0.2029, + 0.9388, + 0.3726, + 0.5784, + 0.6647, + 0.7756, + 0.988, + 0.8765, + 0.6317, + 0.0556, + 0.2363, + 0.1403, + 0.2562, + 0.2019, + 0.1666, + 0.3199, + 0.3161, + 0.9201, + 0.5671, + 0.815, + 0.5568, + 0.9281, + 0.1736, + 0.2797, + 0.0136, + 0.383, + 0.2646, + 0.8803, + 0.2648, + 0.9041, + 0.8159, + 0.788, + 0.033, + 0.1334, + 0.1384, + 0.232, + 0.4269, + 0.476, + 0.0048, + 0.3251, 0.576, - 0.1904, - 0.9775, - 0.8373, - 0.2576, - 0.8491, - 0.7908, - 0.0396, - 0.3796, - 0.9807, - 0.8146, - 0.5496, - 0.4888, - 0.9119, - 0.8956, - 0.7198, - 0.4627, - 0.0987, - 0.4008, - 0.4393, - 0.5855, - 0.9836, - 0.7416, - 0.1159, - 0.082, + 0.2147, + 0.2287, + 0.7726, + 0.4475, + 0.5315, + 0.7645, + 0.4068, + 0.0077, + 0.412, + 0.9545, 0.7013, - 0.111, - 0.0761, - 0.0092, - 0.1199, - 0.7856, - 0.5529, - 0.1809, - 0.0472, - 0.888, - 0.5161, - 0.6054, - 0.9896, - 0.5172, - 0.2318, - 0.0533, - 0.6529, - 0.9158, - 0.0246, - 0.756, - 0.6236, - 0.7922, - 0.9355, - 0.4042, - 0.3047, - 0.7586, - 0.5247, - 0.5302, - 0.5986, - 0.9172, - 0.8473, - 0.8166, - 0.8114, - 0.5131, - 0.9688, - 0.6503, - 0.763, - 0.0641, - 0.6997, - 0.4708, - 0.9254, - 0.4181, - 0.8094, - 0.533, - 0.8938, - 0.4291, - 0.5246, - 0.411, - 0.2826, - 0.0714, - 0.2576, - 0.9033, - 0.182, - 0.3805, - 0.943, - 0.3335, - 0.1768, - 1.0, - 0.3426, - 0.0592, - 0.6563, - 0.4154, - 0.8034, - 0.587, - 0.9766, - 0.4828, - 0.9995, - 0.7456, - 0.9154, - 0.1884, - 0.7358, - 0.0394, - 0.1508, - 0.9025, - 0.3401, - 0.7208, - 0.2885, - 0.1968, - 0.7503, - 0.4839, - 0.7588, - 0.0669, - 0.1789, - 0.5079, - 0.3413, - 0.3162, - 0.923, - 0.0966, - 0.1254, - 0.5786, - 0.4434, - 0.145, - 0.5421, - 0.0234, - 0.1944, - 0.8911, - 0.4678, - 0.9737, - 0.3581, - 0.0597, - 0.6404, + 0.3657, + 0.7298, + 0.7862, + 0.4993, + 0.1582, + 0.6098, + 0.0149, + 0.9907, + 0.9424, + 0.6119, + 0.9616, + 0.0509, + 0.1183, + 0.3006, + 0.5454, + 0.5947, + 0.2199, + 0.2771, + 0.822, + 0.3511, + 0.4496, + 0.3856, + 0.9179, + 0.4467, + 0.9633, + 0.1141, + 0.9353, + 0.266, + 0.5005, + 0.82, + 0.6316, + 0.2326, + 0.5271, 0.6581, - 0.0825, - 0.5655, - 0.1296, - 0.4009, - 0.9044, - 0.8223, - 0.1478, - 0.9438, - 0.801, - 0.3946, - 0.5605, - 0.4615, - 0.1494, - 0.3125, - 0.1695, - 0.8081, - 0.7092, - 0.7029, - 0.1585, - 0.1354, - 0.412, - 0.942, - 0.3782, - 0.8042, - 0.0745, - 0.8706, - 0.2977, - 0.0273, - 0.4073, - 0.0529, - 0.5133, - 0.7164, - 0.761, - 0.5237, - 0.8778, - 0.7522, - 0.7725, - 0.3127, - 0.0542, - 0.4372, - 0.1834, - 0.2021, - 0.8708, - 0.8149, - 0.4337, - 0.5335, - 0.4277, - 0.7088, - 0.8661, - 0.5486, - 0.9319, - 0.4568, - 0.2364, - 0.9972, - 0.5015, - 0.9282, - 0.768, - 0.1308, - 0.1297, - 0.2917, - 0.156, - 0.4971, - 0.2039, - 0.0847, - 0.7534, - 0.0136, - 0.5918, - 0.8218, - 0.5224, - 0.3532, - 0.9527, - 0.2061, - 0.798, - 0.5424, - 0.7185, - 0.6042, - 0.6487, - 0.105, - 0.163, - 0.9099, - 0.1836, - 0.9973, - 0.1764, - 0.1992, - 0.942, - 0.0926, - 0.5163, - 0.4943, - 0.5938, - 0.8506, - 0.6435, - 0.3385, - 0.3986, - 0.3007, - 0.7463, - 0.8284, - 0.1872, - 0.3891, - 0.667, - 0.0534, - 0.843, - 0.7667, - 0.3089, - 0.1156, - 0.9066, - 0.4977, - 0.8041, - 0.1984, - 0.7804, - 0.1733, - 0.6945, - 0.1287, - 0.5893, - 0.0113, - 0.4632, - 0.8272, - 0.458, - 0.0955, - 0.8494, - 0.4249, - 0.6846, - 0.0845, - 0.885, - 0.2854, - 0.5773, - 0.352, - 0.6835, - 0.1457, - 0.5969, - 0.2197, - 0.5757, - 0.8235, - 0.0647, - 0.8224, - 0.4981, - 0.4925, - 0.8887, - 0.469, - 0.6024, - 0.6499, - 0.9756, - 0.765, - 0.7132, - 0.9402, - 0.672, - 0.1524, - 0.7897, - 0.7093, - 0.85, - 0.5878, - 0.2419, - 0.8772, - 0.4343, - 0.1172, - 0.8453, - 0.1047, - 0.6851, - 0.4732, - 0.3365, - 0.2538, - 0.8862, - 0.6138, - 0.4444, - 0.917, - 0.4129, - 0.6385, - 0.0776, - 0.8795, - 0.2701, - 0.6996, - 0.1316, - 0.3434, - 0.42, - 0.3346, - 0.6043, - 0.5355, - 0.7014, - 0.3418, - 0.1463, - 0.6511, - 0.576, - 0.8033, - 0.489, - 0.2927, - 0.1899, - 0.4273, - 0.3221, - 0.601, - 0.4588, - 0.8881, - 0.5776, - 0.3234, + 0.2347, + 0.7327, + 0.606, + 0.2005, + 0.8535, + 0.4637, + 0.4379, + 0.6712, + 0.0626, + 0.5873, + 0.7382, + 0.2519, + 0.6901, + 0.1256, + 0.4817, + 0.132, + 0.4562, 0.7281, - 0.4116, - 0.2491, - 0.6662, - 0.9791, - 0.183, - 0.3435, - 0.5736, - 0.0061, - 0.2671, - 0.619, - 0.1222, - 0.6459, - 0.7649, - 0.3965, - 0.8591, - 0.6876, - 0.0513, - 0.6125, - 0.182, - 0.921, - 0.8431, - 0.4941, - 0.6709, - 0.3591, - 0.9034, - 0.1324, - 0.3844, - 0.0811, - 0.2281, - 0.0276, - 0.5571, - 0.6194, - 0.5408, - 0.8657, - 0.3588, - 0.8768, - 0.9721, - 0.0662, - 0.9421, - 0.9396, - 0.6356, - 0.9814, - 0.6501, - 0.0056, - 0.6635, - 0.8917, - 0.9669, - 0.8867, - 0.4295, - 0.4033, - 0.3175, - 0.0475, - 0.9525, - 0.0089, - 0.5611, - 0.8345, - 0.8783, - 0.122, - 0.2823, - 0.6291, - 0.7646, - 0.7106, - 0.7192, - 0.9717, - 0.2475, - 0.9896, - 0.1282, - 0.3853, - 0.2256, - 0.3877, - 0.2249, - 0.3629, - 0.7595, - 0.4421, - 0.3325, - 0.4395, - 0.7493, - 0.8316, - 0.4236, - 0.8338, - 0.8882, - 0.8903, - 0.145, - 0.4516, - 0.4513, - 0.4857, - 0.129, - 0.8336, - 0.509, - 0.8771, - 0.3075, - 0.7874, - 0.7822, - 0.7248, - 0.4585, - 0.6713, - 0.2671, - 0.5123, - 0.5922, - 0.4692, - 0.3744, - 0.1103, - 0.5623, - 0.0822, - 0.2558, - 0.2983, - 0.7891, - 0.3319, - 0.9332, - 0.3742, - 0.7922, - 0.9628, - 0.5398, - 0.3721, - 0.7263, - 0.4764, - 0.8199, - 0.2302, - 0.8, - 0.8295, - 0.7959, + 0.7926, + 0.6337, + 0.0288, + 0.9894, + 0.8589, + 0.1571, + 0.5978, + 0.5565, + 0.1019, + 0.8681, + 0.8465, + 0.7373, + 0.6765, + 0.163, + 0.131, + 0.9476, + 0.8176, + 0.8164, + 0.3673, + 0.3716, + 0.3449, + 0.6422, + 0.4996, + 0.482, + 0.3567, + 0.3046, + 0.6009, + 0.4, + 0.6153, + 0.7863, + 0.6922, + 0.7677, + 0.1588, + 0.9184, + 0.5174, + 0.7501, + 0.3788, + 0.6205, + 0.0084, + 0.2655, + 0.1272, + 0.1061, + 0.2466, + 0.448, + 0.4205, + 0.4179, + 0.3621, + 0.132, + 0.8618, + 0.8303, + 0.6679, + 0.6346, + 0.8841, + 0.1102, + 0.5373, + 0.242, + 0.151, + 0.5336, + 0.1061, + 0.0073, + 0.1534, + 0.47, + 0.0429, + 0.0451, + 0.4325, + 0.4611, + 0.9761, + 0.3927, + 0.0115, + 0.7135, + 0.7096, + 0.8415, + 0.9624, + 0.4481, + 0.0531, + 0.8182, + 0.0173, + 0.8426, + 0.117, + 0.4098, + 0.3957, + 0.3609, + 0.6918, + 0.2266, + 0.4438, + 0.8784, + 0.784, + 0.4826, + 0.8813, + 0.283, 0.0221, - 0.0427, - 0.553, - 0.9753, - 0.0119, - 0.807, - 0.1738, - 0.8894, - 0.6439, - 0.9095, - 0.8627, - 0.3164, - 0.1402, - 0.457, - 0.3768, - 0.705, - 0.508, - 0.4595, - 0.3535, - 0.5377, - 0.417, - 0.8174, - 0.2078, - 0.1261, - 0.12, - 0.8199, - 0.6984, - 0.4714, - 0.2092, - 0.3766, - 0.1208, - 0.2907, - 0.4245, - 0.8431, - 0.935, - 0.8021, - 0.2633, - 0.7041, - 0.8722, - 0.3224, - 0.6821, + 0.7176, 0.5257, - 0.6408, - 0.8402, - 0.9577, - 0.61, - 0.1803, - 0.7435, - 0.1937, - 0.1877, - 0.7623, - 0.5769, - 0.2788, - 0.0937, - 0.0889, - 0.1931, - 0.0129, - 0.9622, - 0.6624, - 0.7081, - 0.4289, - 0.6552, - 0.3806, - 0.713, - 0.9768, - 0.407, - 0.9981, - 0.434, - 0.533, - 0.7324, - 0.9617, - 0.0233, - 0.3885, - 0.9626, - 0.5525, - 0.4407, - 0.2475, - 0.4107, - 0.0101, - 0.5529, - 0.9729, - 0.6254, - 0.574, - 0.9735, - 0.2467, - 0.7309, - 0.1819, + 0.5911, + 0.5411, + 0.1769, + 0.9781, + 0.5776, + 0.7757, + 0.3862, + 0.7386, + 0.5145, + 0.6659, + 0.587, + 0.6349, + 0.5207, + 0.6951, + 0.1732, + 0.6245, + 0.5882, + 0.932, + 0.9366, + 0.4241, + 0.1802, + 0.0433, + 0.2888, + 0.8503, + 0.5807, + 0.8684, + 0.8344, + 0.5677, + 0.9932, + 0.0484, + 0.6392, + 0.3506, + 0.9209, + 0.7509, + 0.8017, + 0.5292, + 0.2979, + 0.7517, 0.7827, - 0.2438, - 0.3866, - 0.2428, - 0.77, - 0.4735, - 0.3612, - 0.3246, - 0.9722, - 0.6745, - 0.3528, - 0.6462, - 0.6833, - 0.8036, - 0.21, - 0.3039, - 0.9819, + 0.8901, + 0.5415, + 0.9738, + 0.0338, + 0.9864, + 0.0817, + 0.6312, 0.3757, - 0.7643, - 0.2429, - 0.5619, + 0.4408, + 0.9972, + 0.2363, + 0.6439, + 0.594, + 0.8959, + 0.1057, + 0.9701, + 0.1304, + 0.9613, + 0.5717, + 0.4914, + 0.7611, + 0.2111, + 0.203, + 0.6341, + 0.8389, + 0.3956, 0.2828, - 0.3482, - 0.9179, - 0.7798, - 0.1068, - 0.7242, - 0.1976, - 0.3516, - 0.5671, - 0.2417, - 0.3561, - 0.413, - 0.3463, - 0.5767, - 0.6463, - 0.2311, - 0.4423, - 0.9991, - 0.364, - 0.5979, - 0.8644, - 0.1201, - 0.267, - 0.8617, - 0.7405, - 0.3913, - 0.2478, - 0.2214, - 0.3339, - 0.0207, - 0.3318, - 0.601, - 0.6469, - 0.5502, - 0.5356, - 0.4433, - 0.0557, - 0.545, - 0.4217, - 0.8365, - 0.9954, - 0.9593, - 0.4361, - 0.6319, - 0.4862, - 0.3517, - 0.8374, - 0.3639, - 0.4573, - 0.6396, - 0.0493, - 0.9424, - 0.2129, - 0.6423, - 0.3559, - 0.3741, - 0.3189, - 0.0829, - 0.923, - 0.1132, - 0.6209, - 0.1456, - 0.6716, - 0.1275, - 0.68, - 0.6178, - 0.5438, - 0.7194, - 0.0851, - 0.9605, - 0.4701, - 0.2904, - 0.2609, - 0.006, - 0.7034, - 0.1556, - 0.5354, - 0.3212, - 0.5439, - 0.7691, - 0.1008, - 0.9752, - 0.8736, - 0.1394, - 0.712, - 0.3011, - 0.3479, - 0.5683, - 0.1917, - 0.6081, - 0.4766, - 0.6802, - 0.8331, - 0.0126, - 0.8283, - 0.9953, - 0.0846, - 0.5046, - 0.2022, - 0.5943, - 0.7289, - 0.3395, - 0.3727, - 0.727, - 0.3611, - 0.1928, - 0.8918, - 0.7463, - 0.3121, - 0.674, - 0.2094, - 0.7116, - 0.4899, - 0.8077, - 0.2506, - 0.943, + 0.7825, + 0.9539, + 0.209, + 0.6975, + 0.9649, + 0.7227, + 0.6618, + 0.3265, + 0.104, + 0.0063, + 0.8967, + 0.0908, + 0.6204, + 0.4351, + 0.0095, + 0.789, + 0.9239, + 0.748, + 0.3056, + 0.2636, + 0.1434, + 0.5311, + 0.8155, + 0.6564, + 0.9163, + 0.7046, + 0.9163, + 0.4444, + 0.8114, + 0.463, + 0.0459, + 0.7987, + 0.052, + 0.2017, + 0.5927, + 0.6641, + 0.9607, + 0.091, 0.0187, - 0.917, - 0.9103, - 0.3844, - 0.503, - 0.286, - 0.321, - 0.3244, - 0.8384, - 0.0269, - 0.7986, - 0.3561, - 0.3832, - 0.0415, - 0.7571, - 0.0769, - 0.8897, - 0.9105, - 0.7615, - 0.7918, - 0.5998, - 0.7782, - 0.746, - 0.5503, - 0.6558, - 0.8667, - 0.6122, - 0.3024, - 0.5161, - 0.73, - 0.6394, - 0.0683, - 0.4891, - 0.5888, - 0.3145, - 0.4416, - 0.5331, - 0.7467, - 0.8874, - 0.2955, - 0.4754, - 0.4361, - 0.0959, - 0.5052, - 0.8336, - 0.6053, - 0.5607, - 0.8182, - 0.4641, - 0.3366, - 0.0592, - 0.9907, - 0.3953, - 0.8969, - 0.7754, - 0.7312, - 0.3155, - 0.1964, - 0.781, - 0.2032, - 0.7665, - 0.555, - 0.4432, - 0.7282, - 0.0911, - 0.2678, - 0.944, - 0.6256, - 0.0035, - 0.0815, - 0.2986, - 0.987, - 0.0392, - 0.6996, - 0.2455, - 0.0436, - 0.9488, - 0.426, - 0.6292, - 0.3314, - 0.8621, - 0.9541, - 0.6967, - 0.3607, - 0.0143, - 0.0278, - 0.3952, - 0.0738, - 0.953, - 0.2449, - 0.243, - 0.1659, - 0.0235, - 0.5878, - 0.0652, - 0.6592, - 0.3246, - 0.1354, - 0.1556, - 0.065, - 0.3051, - 0.2356, - 0.3835, - 0.2581, - 0.574, - 0.8205, - 0.9103, - 0.363, - 0.0758, - 0.1933, - 0.8957, - 0.176, - 0.1321, - 0.6822, - 0.1136, - 0.715, - 0.1586, - 0.0998, - 0.9118, - 0.8841, - 0.002, - 0.4486, - 0.9292, - 0.1682, - 0.6997, - 0.0801, - 0.5526, - 0.3362, + 0.8277, + 0.965, + 0.2938, + 0.4888, + 0.9179, + 0.9149, + 0.5254, + 0.1828, + 0.9517, + 0.2347, + 0.0681, + 0.7139, + 0.7868, + 0.4903, + 0.4607, + 0.6236, + 0.9054, + 0.6278, + 0.3867, + 0.6389, + 0.6596, 0.7118, - 0.2479, - 0.3028, - 0.0294, - 0.6498, - 0.5315, - 0.628, - 0.666, - 0.6497, - 0.4505, - 0.4684, - 0.2637, - 0.986, - 0.0576, - 0.6021, - 0.6684, - 0.0942, - 0.8226, - 0.8937, - 0.0244, - 0.1537, - 0.8475, - 0.8655, - 0.4239, - 0.1233, - 0.5677, - 0.0685, - 0.5691, - 0.003, - 0.7793, - 0.8551, - 0.5765, - 0.6517, - 0.2636, + 0.1409, + 0.2434, + 0.4107, + 0.899, + 0.3618, + 0.6744, + 0.8431, + 0.1021, + 0.6278, + 0.5923, + 0.9388, + 0.5676, + 0.2172, + 0.4453, + 0.7529, + 0.0687, + 0.8888, + 0.2034, + 0.936, + 0.5294, + 0.1729, + 0.0205, + 0.3485, + 0.3759, + 0.3628, + 0.78, + 0.6639, + 0.8609, + 0.3491, + 0.1684, + 0.5372, + 0.7116, + 0.7818, + 0.8056, + 0.2203, + 0.5288, + 0.1602, + 0.5679, + 0.4013, + 0.4066, + 0.6849, + 0.2039, + 0.7072, + 0.0506, + 0.4933, + 0.8704, + 0.6539, + 0.0357, + 0.7076, + 0.0877, + 0.297, 0.3611, - 0.9129, - 0.3521, - 0.4136, - 0.0801, - 0.0116, - 0.1596, - 0.3607, - 0.4345, - 0.0962, - 0.4846, - 0.4221, - 0.0852, - 0.6946, - 0.8699, - 0.7729, - 0.2177, - 0.8511, - 0.7871, - 0.7331, - 0.2336, + 0.8476, + 0.3951, + 0.4154, + 0.4028, + 0.4058, + 0.7339, + 0.2951, + 0.956, + 0.9398, + 0.6614, + 0.3, + 0.0939, + 0.1384, + 0.5699, + 0.3609, + 0.6961, + 0.1627, + 0.1013, + 0.7523, + 0.0663, + 0.4537, + 0.1494, + 0.8735, + 0.9125, + 0.3746, + 0.1449, + 0.5581, + 0.0303, + 0.4035, + 0.5083, + 0.4895, + 0.5835, + 0.6631, + 0.2283, + 0.7186, + 0.1903, + 0.3174, + 0.8046, + 0.9945, + 0.41, + 0.2695, + 0.1419, + 0.9941, + 0.514, + 0.7153, + 0.5859, + 0.5745, + 0.3273, + 0.0082, + 0.2755, + 0.6682, + 0.4134, + 0.3932, + 0.6718, + 0.3397, + 0.7435, + 0.962, + 0.8198, + 0.084, + 0.3384, + 0.9921, + 0.9267, + 0.4931, + 0.4408, + 0.5773, + 0.408, + 0.0201, + 0.6026, + 0.5904, + 0.9035, + 0.1816, + 0.2216, + 0.1567, + 0.1604, + 0.0053, + 0.3566, + 0.3636, + 0.4824, + 0.0034, + 0.1374, + 0.7692, + 0.9252, + 0.9363, + 0.5269, + 0.6349, + 0.0574, + 0.2313, 0.4061, - 0.3442, - 0.9658, - 0.611, - 0.9543, - 0.2931, - 0.0102, - 0.8232, - 0.6617, - 0.8676, - 0.7791, - 0.5452, - 0.4653, - 0.203, - 0.9195, - 0.5634, - 0.9882, - 0.239, - 0.7536, - 0.2979, - 0.6472, - 0.2426, - 0.0943, - 0.3211, - 0.0737, - 0.8147, - 0.6175, - 0.9918, - 0.4744, - 0.0435, - 0.2285, - 0.3758, - 0.2543, - 0.7208, - 0.9306, - 0.2685, - 0.5791, - 0.8409, - 0.6063, - 0.1018, - 0.3345, - 0.3434, - 0.0097, - 0.8534, - 0.6918, - 0.6383, - 0.9872, - 0.8673, - 0.4966, - 0.6416, - 0.4188, - 0.9189, - 0.388, - 0.4037, - 0.6715, - 0.7016, - 0.2912, - 0.0341, - 0.7831, - 0.9477, - 0.9601, - 0.0443, - 0.9235, - 0.7815, - 0.9043, - 0.902, - 0.1115, - 0.7347, - 0.6101, - 0.4489, - 0.384, - 0.377, - 0.9341, - 0.0197, - 0.8983, - 0.9046, - 0.0288, - 0.7729, - 0.4667, - 0.7652, - 0.082, - 0.4474, - 0.4091, - 0.2167, - 0.0736, - 0.7002, - 0.9944, - 0.8804, - 0.3064, - 0.552, - 0.0632, - 0.4469, - 0.1746, - 0.9232, - 0.5181, - 0.9558, - 0.0356, - 0.2184, - 0.9495, - 0.4017, - 0.3976, - 0.4238, - 0.8084, - 0.634, - 0.2768, - 0.2495, - 0.6845, - 0.8148, - 0.3869, - 0.9222, - 0.0686, - 0.3405, - 0.9005, - 0.2655, - 0.0697, - 0.8911, - 0.5137, - 0.9405, - 0.996, - 0.7947, - 0.1274, - 0.1535, - 0.6838, - 0.0295, - 0.9126, - 0.8511, - 0.4393, - 0.445, - 0.2676, - 0.127, - 0.9205, - 0.6341, - 0.6518, - 0.6181, - 0.7813, - 0.2242, - 0.6612, - 0.2139, - 0.9765, - 0.7219, - 0.2009, - 0.5263, - 0.0079, - 0.3444, - 0.8939, - 0.9604, - 0.5585, - 0.318, - 0.3111, - 0.5894, - 0.2572, + 0.1275, + 0.8633, + 0.0462, + 0.9328, + 0.263, + 0.9382, + 0.4307, + 0.5701, + 0.7275, + 0.5959, + 0.3556, + 0.4178, + 0.1414, + 0.2969, + 0.8176, + 0.6632, + 0.1906, + 0.8374, + 0.6831, + 0.6707, + 0.433, + 0.976, + 0.7425, + 0.4305, + 0.8857, + 0.276, + 0.5373, + 0.9017, + 0.4127, + 0.235, + 0.064, + 0.8936, + 0.4586, + 0.2884, + 0.6374, + 0.5525, + 0.9573, + 0.793, + 0.7369, + 0.7387, 0.0036, - 0.8061, - 0.7044, - 0.9314, - 0.3149, - 0.1781, - 0.6054, - 0.7341, - 0.231, - 0.9797, - 0.2501, - 0.5719, - 0.2624, - 0.9812, - 0.7077, - 0.1475, - 0.5411, + 0.4327, + 0.085, + 0.7807, + 0.0512, + 0.302, + 0.6162, + 0.2317, + 0.9574, + 0.324, + 0.3375, + 0.31, + 0.4428, + 0.9251, + 0.5589, + 0.3235, + 0.835, + 0.9648, + 0.2869, + 0.8954, + 0.0829, + 0.3175, + 0.9078, + 0.4106, + 0.3547, + 0.8471, + 0.1464, + 0.2065, + 0.6215, + 0.989, + 0.8269, 0.9247, - 0.3942, - 0.8314, - 0.309, - 0.1836, - 0.2427, - 0.4226, - 0.3057, - 0.5569, - 0.8176, - 0.2026, - 0.7232, - 0.2183, - 0.5603, - 0.3751, - 0.7186, - 0.1732, - 0.4165, - 0.7326, - 0.5202, - 0.4017, - 0.0561, - 0.0938, - 0.8126, - 0.3837, - 0.5442, - 0.2611, - 0.0175, - 0.896, - 0.7654, - 0.698, - 0.7777, - 0.838, - 0.9411, - 0.6125, - 0.5904, - 0.1882, - 0.7571, - 0.469, - 0.434, - 0.675, - 0.1265, - 0.677, - 0.2961, - 0.1409, - 0.0108, - 0.4016, - 0.2948, - 0.6948, - 0.59, - 0.3234, - 0.2973, - 0.5451, - 0.8347, - 0.568, - 0.2421, - 0.9874, - 0.0909, - 0.8683, - 0.1247, - 0.7186, - 0.5104, - 0.1128, - 0.7249, - 0.5022, - 0.2062, - 0.638, - 0.9628, - 0.201, - 0.8826, - 0.1429, - 0.0394, - 0.4912, - 0.5277, - 0.6428, - 0.7616, - 0.1271, - 0.4869, - 0.0329, - 0.7784, - 0.0262, - 0.2878, - 0.7953, - 0.5096, - 0.5471, - 0.3605, - 0.4681, - 0.7214, - 0.5473, - 0.5663, - 0.1226, - 0.6893, - 0.1881, - 0.6959, - 0.7914, - 0.4337, - 0.9638, - 0.3689, - 0.8138, - 0.8129, - 0.7821, - 0.4043, - 0.0734, - 0.3404, - 0.1441, - 0.832, - 0.2441, - 0.4632, - 0.3095, - 0.731, - 0.921, - 0.5808, - 0.5438, - 0.6746, - 0.8534, - 0.9649, - 0.9267, - 0.7233, - 0.0984, - 0.9543, - 0.5263, - 0.6326, - 0.8588, - 0.1105, - 0.7344, - 0.184, - 0.8545, - 0.6519, - 0.7586, - 0.9225, - 0.9827, - 0.5018, - 0.797, - 0.3932, - 0.9517, - 0.9862, - 0.3889, - 0.8908, - 0.1946, - 0.8807, - 0.5136, - 0.9305, - 0.7088, - 0.8494, - 0.855, - 0.5204, - 0.2002, - 0.0471, - 0.9129, - 0.5834, - 0.7036, - 0.4036, - 0.0597, - 0.8913, - 0.9794, - 0.6738, - 0.6485, - 0.1134, - 0.2774, - 0.1175, - 0.4504, - 0.6273, - 0.3444, - 0.3013, - 0.5385, - 0.4681, - 0.268, + 0.7679, + 0.9472, + 0.2258, + 0.7395, + 0.8004, + 0.776, + 0.0481, + 0.2792, + 0.2905, + 0.7406, + 0.5536, + 0.6866, + 0.3829, + 0.5775, + 0.1163, + 0.9905, + 0.0459, + 0.3967, + 0.4515, + 0.0423, + 0.7663, + 0.4889, + 0.0797, + 0.7006, + 0.1148, + 0.835, + 0.3169, + 0.8906, + 0.3414, + 0.6415, + 0.5412, + 0.4402, + 0.0636, + 0.6817, + 0.738, + 0.317, + 0.2374, + 0.4683, + 0.6064, + 0.4775, + 0.4349, + 0.3535, + 0.031, + 0.913, + 0.2846, + 0.6845, + 0.6306, + 0.7129, + 0.2969, + 0.7474, + 0.5778, + 0.4443, + 0.8041, + 0.7481, + 0.1479, + 0.9419, + 0.5691, + 0.6789, + 0.7193, + 0.4572, + 0.9212, + 0.3533, + 0.8157, + 0.8124, + 0.5035, + 0.9718, + 0.7619, + 0.6335, + 0.1208, + 0.1544, + 0.2455, + 0.0717, + 0.8569, + 0.3028, + 0.377, + 0.6181, + 0.5972, + 0.2814, + 0.0132, + 0.9347, + 0.3772, + 0.927, + 0.4718, + 0.8114, + 0.8867, + 0.3229, + 0.5636, + 0.2813, + 0.4721, + 0.9968, + 0.282, + 0.7028, + 0.5091, + 0.1254, + 0.1318, 0.7582, - 0.815, - 0.0596, - 0.1922, - 0.6852, - 0.1914, - 0.6801, - 0.1672, - 0.3794, - 0.8771, - 0.3114, - 0.5515, - 0.8788, - 0.9938, - 0.4309, - 0.8969, - 0.613, - 0.8575, - 0.8713, - 0.9768, - 0.6624, - 0.6952, - 0.8058, - 0.2838, - 0.6494, - 0.8946, - 0.5937, - 0.0452, - 0.9569, - 0.2069, - 0.0339, - 0.7047, - 0.8911, - 0.4741, - 0.1108, - 0.8783, - 0.4589, - 0.5207, - 0.7891, + 0.7918, + 0.0572, + 0.8198, + 0.1205, + 0.7168, + 0.3748, + 0.5745, + 0.7109, + 0.0917, + 0.7928, + 0.2972, + 0.5554, + 0.3322, + 0.9976, + 0.3576, + 0.3792, + 0.9614, + 0.7529, + 0.9318, + 0.7204, + 0.5425, + 0.1569, + 0.3005, + 0.664, + 0.767, + 0.4326, + 0.7853, + 0.7969, + 0.1964, + 0.9905, + 0.0299, + 0.3936, + 0.4023, + 0.7262, + 0.4682, + 0.6111, + 0.2284, + 0.4019, + 0.6711, + 0.43, + 0.8847, + 0.1963, + 0.2113, + 0.6274, + 0.169, + 0.9051, + 0.5743, + 0.9836, + 0.0599, + 0.1884, + 0.8359, + 0.262, + 0.4582, + 0.2195, + 0.4696, 0.3574, - 0.1707, - 0.6494, - 0.3298, - 0.1775, - 0.8705, - 0.9688, - 0.392, - 0.8189, - 0.6968, - 0.5157, - 0.335, - 0.0627, - 0.4439, - 0.2786, - 0.7215, - 0.027, - 0.6737, - 0.6821, - 0.4274, - 0.6548, - 0.4788, - 0.9024, - 0.7102, - 0.2393, - 0.2827, - 0.0906, + 0.5231, + 0.4592, + 0.044, + 0.6847, + 0.5824, + 0.7904, + 0.9383, + 0.0478, + 0.1819, + 0.8247, + 0.433, + 0.0193, + 0.9618, + 0.4455, + 0.5778, + 0.9033, + 0.8804, + 0.866, + 0.4386, + 0.4896, + 0.3786, + 0.8853, + 0.8483, + 0.4214, + 0.1987, + 0.5689, + 0.95, + 0.5571, + 0.3674, + 0.2945, + 0.1701, + 0.8899, + 0.5342, + 0.0562, + 0.7852, + 0.0165, + 0.1892, + 0.1517, + 0.4378, + 0.039, + 0.0924, + 0.7055, + 0.1424, + 0.323, + 0.6406, + 0.6535, + 0.9895, + 0.7086, + 0.1824, + 0.2614, + 0.7454, + 0.6383, + 0.7872, + 0.1277, + 0.2857, + 0.9314, + 0.0467, + 0.6876, + 0.6743, + 0.1413, + 0.4389, + 0.2129, + 0.7342, + 0.2814, + 0.1999, + 0.0622, + 0.9365, + 0.6031, + 0.8027, + 0.163, + 0.8042, + 0.7971, + 0.5153, + 0.7039, + 0.0801, + 0.3806, + 0.7903, + 0.6797, + 0.6236, + 0.6499, + 0.152, + 0.6464, + 0.972, + 0.1411, + 0.0848, + 0.0138, + 0.1057, + 0.0236, + 0.5383, + 0.8618, + 0.204, + 0.8497, + 0.5079, + 0.6124, + 0.2661, 0.5936, - 0.5786, - 0.5215, - 0.4669, - 0.1059, - 0.8562, - 0.2351, - 0.9859, - 0.6968, - 0.1937, - 0.598, - 0.4448, - 0.604, - 0.2349, - 0.6854, - 0.3631, - 0.3183, - 0.3071, - 0.2215, - 0.3089, - 0.3738, - 0.068, - 0.6956, - 0.872, - 0.4829, - 0.1725, - 0.0794, - 0.7444, - 0.8109, - 0.9661, - 0.186, - 0.8979, - 0.5561, - 0.1085, - 0.0473, - 0.0034, - 0.2994, - 0.7752, - 0.5733, - 0.6, - 0.2277, - 0.2103, - 0.1452, - 0.6048, - 0.7726, - 0.4783, - 0.0199, - 0.7437, - 0.1605, - 0.0774, - 0.6124, - 0.2951, - 0.6104, - 0.5849, - 0.0372, - 0.8594, - 0.4103, - 0.5245, - 0.9585, - 0.2526, - 0.4932, - 0.7062, - 0.0306, - 0.0763, - 0.4919, - 0.8355, - 0.2956, - 0.0809, - 0.7833, - 0.2835, - 0.5434, - 0.9208, - 0.2059, - 0.6751, - 0.8927, - 0.455, - 0.2979, - 0.7144, - 0.7268, - 0.5137, - 0.1732, - 0.9331, - 0.8456, - 0.7757, - 0.587, - 0.1888, - 0.2639, - 0.8896, - 0.9741, - 0.5524, - 0.2144, - 0.533, - 0.6994, - 0.9007, - 0.3546, - 0.1977, - 0.8649, - 0.3267, - 0.8857, - 0.7404, - 0.1855, - 0.5647, - 0.7837, - 0.1096, - 0.3567, - 0.0396, - 0.4467, - 0.7972, - 0.7126, - 0.7086, - 0.9737, - 0.9393, - 0.5692, - 0.5603, - 0.532, - 0.7031, - 0.1951, - 0.9736, - 0.9598, - 0.1111, - 0.3613, - 0.8983, - 0.7268, - 0.419, - 0.3085, - 0.9411, - 0.2975, - 0.4132, - 0.6213, - 0.9855, - 0.2704, - 0.9335, - 0.7738, - 0.7064, - 0.8675, - 0.369, - 0.1717, - 0.7059, - 0.0674, - 0.2527, - 0.1751, - 0.4276, - 0.5132, - 0.4046, - 0.8171, - 0.7197, - 0.2896, - 0.498, - 0.3387, - 0.7829, - 0.3388, - 0.8587, - 0.791, - 0.6506, - 0.3948, - 0.9969, - 0.1831, - 0.036, - 0.0828, - 0.98, - 0.003, - 0.6554, - 0.4883, - 0.1418, - 0.1099, - 0.906, - 0.3601, - 0.8448, - 0.4374, - 0.5859, - 0.3962, - 0.4472, - 0.9746, - 0.7854, - 0.7169, - 0.4714, - 0.2116, - 0.6388, - 0.5954, - 0.4033, - 0.4522, - 0.0657, - 0.1043, - 0.5563, - 0.6744, - 0.3575, - 0.6674, - 0.3099, - 0.6388, - 0.5776, - 0.7507, - 0.2503, - 0.1225, - 0.2316, - 0.7706, - 0.698, - 0.8533, - 0.1976, - 0.3415, - 0.0321, - 0.3306, - 0.3771, - 0.3519, - 0.7225, - 0.2181, - 0.6853, - 0.5693, - 0.8345, - 0.4019, - 0.0107, - 0.127, - 0.6375, - 0.0837, - 0.2683, - 0.0891, - 0.43, - 0.6057, - 0.3847, - 0.0432, - 0.5845, - 0.9023, - 0.1105, - 0.3053, - 0.4743, - 0.0162, - 0.4257, - 0.8908, - 0.4362, - 0.2505, - 0.1083, - 0.1384, - 0.596, - 0.1085, - 0.4541, - 0.849, - 0.4417, - 0.0114, - 0.5919, - 0.0439, - 0.0576, - 0.0272, - 0.7043, - 0.6563, - 0.94, - 0.9818, - 0.2566, - 0.7479, - 0.3403, - 0.0015, - 0.1848, - 0.5789, - 0.3711, - 0.4841, - 0.3238, - 0.7134, - 0.1482, - 0.1859, - 0.3376, - 0.5396, - 0.2151, - 0.1912, - 0.3979, - 0.4196, - 0.6507, - 0.8241, - 0.2216, - 0.0982, - 0.6348, - 0.9517, - 0.8868, - 0.8713, - 0.3851, - 0.4807, - 0.375, - 0.8524, - 0.8407, - 0.5229, - 0.9519, - 0.1372, - 0.0759, - 0.4694, - 0.2184, - 0.3327, - 0.9284, - 0.079, - 0.3508, - 0.2478, - 0.5192, - 0.4961, - 0.2179, - 0.9483, - 0.7889, - 0.0297, - 0.6748, - 0.0521, - 0.2792, - 0.2134, - 0.9393, - 0.0758, - 0.9632, - 0.9038, - 0.4034, - 0.048, - 0.7638, + 0.1633, + 0.0929, + 0.986, + 0.2698, + 0.8949, + 0.2953, + 0.2231, + 0.9141, + 0.7623, + 0.5394, + 0.129, + 0.6631, + 0.7649, + 0.9193, + 0.6549, + 0.4891, + 0.7409, + 0.3268, + 0.3234, + 0.0598, + 0.3914, + 0.789, + 0.7361, + 0.9078, + 0.2953, + 0.6942, + 0.898, + 0.5065, + 0.4361, + 0.6286, + 0.7976, + 0.3354, + 0.4268, + 0.3138, + 0.6497, + 0.9239, + 0.4854, + 0.984, + 0.2315, + 0.6828, + 0.1905, + 0.9201, + 0.2669, + 0.2866, + 0.8121, + 0.8042, + 0.0051, + 0.3926, + 0.1209, + 0.5756, + 0.7731, + 0.8386, + 0.2867, + 0.7805, + 0.0349, + 0.9336, + 0.0933, + 0.1399, + 0.1313, + 0.9994, + 0.6808, + 0.7818, + 0.969, + 0.7618, + 0.3153, + 0.4199, + 0.7672, + 0.3878, + 0.63, + 0.0438, + 0.9044, 0.2699, - 0.8624, - 0.2717, + 0.8604, + 0.5489, + 0.3019, + 0.6352, + 0.302, + 0.0829, + 0.7784, + 0.4819, + 0.1033, + 0.3656, + 0.327, + 0.5596, + 0.4792, + 0.4922, + 0.4917, + 0.022, + 0.4011, 0.5383, - 0.7938, - 0.4738, - 0.5814, - 0.1554, - 0.1865, - 0.5621, - 0.599, - 0.729, - 0.4908, + 0.5079, + 0.8778, + 0.3252, + 0.9009, + 0.3341, + 0.8954, + 0.7349, + 0.7143, + 0.2649, + 0.2713, + 0.8571, + 0.8615, + 0.2452, 0.707, - 0.259, - 0.4496, - 0.8745, - 0.689, - 0.6137, - 0.5088, - 0.2081, - 0.2512, - 0.5754, - 0.7039, - 0.0833, - 0.5988, - 0.4692, - 0.9048, - 0.9225, - 0.6715, - 0.4768, - 0.4843, - 0.1643, - 0.748, - 0.5745, - 0.1525, - 0.3745, - 0.7277, - 0.1155, - 0.836, - 0.1174, - 0.6119, - 0.0963, - 0.8901, - 0.2585, - 0.7071, - 0.0495, - 0.3521, - 0.8134, - 0.283, - 0.772, - 0.9956, - 0.9568, - 0.0896, - 0.0608, - 0.8264, - 0.8982, - 0.449, - 0.3216, - 0.4523, - 0.333, - 0.5946, - 0.502, - 0.2083, - 0.3578, - 0.6087, - 0.9834, - 0.7879, - 0.465, - 0.6992, - 0.6189, - 0.7115, - 0.5695, - 0.4967, - 0.4297, - 0.0706, - 0.6046, - 0.4818, - 0.2379, - 0.6445, - 0.8301, - 0.2078, - 0.5724, - 0.6759, - 0.9768, - 0.578, - 0.4681, - 0.526, - 0.27, - 0.876, - 0.0798, - 0.2148, - 0.3811, - 0.85, - 0.6341, - 0.2386, + 0.2954, + 0.4667, + 0.5315, + 0.682, + 0.9321, + 0.1277, + 0.9766, + 0.3253, + 0.8483, + 0.6093, + 0.314, + 0.4587, + 0.7844, + 0.5858, + 0.765, + 0.4115, + 0.2824, + 0.2454, + 0.3646, + 0.787, + 0.7064, + 0.3296, + 0.3569, + 0.6207, + 0.1447, + 0.3192, + 0.2706, + 0.0067, + 0.401, + 0.7143, + 0.9642, + 0.6006, + 0.4915, + 0.9784, + 0.4109, + 0.7596, + 0.1374, + 0.665, + 0.2817, + 0.0312, + 0.9689, + 0.5282, + 0.8626, + 0.5304, + 0.5372, + 0.8585, + 0.6479, + 0.6476, + 0.6404, + 0.4307, + 0.5524, + 0.3544, + 0.617, + 0.7745, + 0.7005, + 0.062, + 0.7948, + 0.1462, + 0.6089, + 0.2382, + 0.8225, + 0.996, + 0.0637, + 0.5281, + 0.4281, + 0.8934, + 0.7511, + 0.481, + 0.9919, + 0.0447, + 0.0595, + 0.3615, + 0.4704, + 0.1041, + 0.3084, + 0.3533, + 0.0416, + 0.4343, + 0.6595, + 0.1329, + 0.8063, + 0.8271, + 0.2569, + 0.7371, + 0.0914, + 0.5281, + 0.8986, + 0.7529, + 0.1999, + 0.0264, + 0.4395, + 0.2735, + 0.5639, + 0.403, + 0.9603, + 0.6318, + 0.5747, + 0.7317, + 0.1457, + 0.6909, + 0.3656, + 0.7422, + 0.4808, + 0.1614, + 0.5637, + 0.8616, + 0.0675, + 0.3344, + 0.3003, + 0.7619, + 0.5968, + 0.2786, + 0.5461, + 0.4688, + 0.5318, + 0.4941, + 0.1071, + 0.2868, + 0.9077, + 0.9991, + 0.8676, + 0.8861, + 0.9583, + 0.9321, + 0.9445, + 0.8407, + 0.6719, + 0.3225, + 0.3666, + 0.9529, + 0.2853, + 0.2163, + 0.4724, + 0.6338, + 0.7496, + 0.76, + 0.9583, + 0.3922, + 0.9223, + 0.7594, + 0.6577, + 0.4672, + 0.186, + 0.7028, + 0.5916, + 0.87, + 0.7805, + 0.7559, + 0.076, + 0.9682, + 0.8672, + 0.0072, + 0.7849, + 0.9858, + 0.2, + 0.1325, + 0.4108, + 0.1701, + 0.6818, + 0.1841, + 0.7228, + 0.4785, + 0.0886, + 0.5432, + 0.6436, + 0.8379, + 0.0941, + 0.887, + 0.0553, + 0.9121, + 0.0162, + 0.3978, + 0.5855, + 0.452, + 0.9127, + 0.8576, + 0.7498, + 0.485, + 0.1282, + 0.3638, + 0.6795, + 0.3913, + 0.8047, + 0.0304, + 0.7898, + 0.5429, + 0.2579, + 0.9467, + 0.9985, + 0.4131, + 0.8542, + 0.5696, + 0.0878, + 0.5731, + 0.7232, + 0.1462, + 0.2893, + 0.4601, + 0.323, + 0.9517, + 0.6017, + 0.7755, 0.2684, - 0.1813, - 0.472, - 0.5045, - 0.1977, - 0.4916, - 0.4395 - ], - "timestep": 1, - "start_date": [ - 1, - 1 - ], - "placeholder_value": 0.0, - "interpolate": false, - "schedule_type_limit": "Fractional" - }, - { - "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Activity", - "day_schedules": [ - { - "type": "ScheduleDay", - "identifier": "OfficeMedium ACTIVITY_SCH_Default", - "values": [ - 120.0 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium ACTIVITY_SCH_Default_SmrDsn", - "values": [ - 120.0 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium ACTIVITY_SCH_Default_WntrDsn", - "values": [ - 120.0 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - } - ], - "default_day_schedule": "OfficeMedium ACTIVITY_SCH_Default", - "holiday_schedule": "OfficeMedium ACTIVITY_SCH_Default", - "summer_designday_schedule": "OfficeMedium ACTIVITY_SCH_Default_SmrDsn", - "winter_designday_schedule": "OfficeMedium ACTIVITY_SCH_Default_WntrDsn", - "schedule_type_limit": "Activity Level" - }, - { - "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Infiltration", - "day_schedules": [ - { - "type": "ScheduleDay", - "identifier": "OfficeMedium INFIL_SCH_PNNL_Default", - "values": [ - 1.0 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", - "values": [ - 1.0, - 0.25, - 1.0 - ], - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 22, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", - "values": [ - 1.0, - 0.25, - 1.0 - ], - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 18, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy", - "values": [ - 1.0, - 0.25, - 1.0 - ], - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 22, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat", - "values": [ - 1.0, - 0.25, - 1.0 - ], - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 18, - 0 - ] - ], - "interpolate": false - } - ], - "default_day_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", - "schedule_rules": [ - { - "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Wkdy", - "apply_sunday": false, - "apply_monday": true, - "apply_tuesday": true, - "apply_wednesday": true, - "apply_thursday": true, - "apply_friday": true, - "apply_saturday": false, - "start_date": [ - 1, - 1 - ], - "end_date": [ - 12, - 31 - ] - }, - { - "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Sat", - "apply_sunday": false, - "apply_monday": false, - "apply_tuesday": false, - "apply_wednesday": false, - "apply_thursday": false, - "apply_friday": false, - "apply_saturday": true, - "start_date": [ - 1, - 1 - ], - "end_date": [ - 12, - 31 - ] - } - ], - "holiday_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", - "summer_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", - "winter_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", - "schedule_type_limit": "Fractional" - }, - { - "type": "ScheduleFixedIntervalAbridged", - "identifier": "Seasonal Tree Transmittance", - "values": [ - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.75, - 0.7497716894977169, - 0.7495433789954338, - 0.7493150684931507, - 0.7490867579908675, - 0.7488584474885844, - 0.7486301369863013, - 0.7484018264840183, - 0.7481735159817352, - 0.7479452054794521, - 0.747716894977169, - 0.7474885844748859, - 0.7472602739726028, - 0.7470319634703196, - 0.7468036529680365, - 0.7465753424657534, - 0.7463470319634703, - 0.7461187214611872, - 0.7458904109589041, - 0.745662100456621, - 0.745433789954338, - 0.7452054794520548, - 0.7449771689497717, - 0.7447488584474886, - 0.7445205479452055, - 0.7442922374429224, - 0.7440639269406393, - 0.7438356164383562, - 0.743607305936073, - 0.7433789954337899, - 0.7431506849315068, - 0.7429223744292237, - 0.7426940639269406, - 0.7424657534246575, - 0.7422374429223745, - 0.7420091324200914, - 0.7417808219178083, - 0.7415525114155251, - 0.741324200913242, - 0.7410958904109589, - 0.7408675799086758, - 0.7406392694063927, - 0.7404109589041096, - 0.7401826484018265, - 0.7399543378995433, - 0.7397260273972602, - 0.7394977168949771, - 0.7392694063926941, - 0.739041095890411, - 0.7388127853881279, - 0.7385844748858448, - 0.7383561643835617, - 0.7381278538812786, - 0.7378995433789954, - 0.7376712328767123, - 0.7374429223744292, - 0.7372146118721461, - 0.736986301369863, - 0.7367579908675799, - 0.7365296803652968, - 0.7363013698630136, - 0.7360730593607306, - 0.7358447488584475, - 0.7356164383561644, - 0.7353881278538813, - 0.7351598173515982, - 0.7349315068493151, - 0.734703196347032, - 0.7344748858447488, - 0.7342465753424657, - 0.7340182648401826, - 0.7337899543378995, - 0.7335616438356164, - 0.7333333333333333, - 0.7331050228310503, - 0.7328767123287672, - 0.732648401826484, - 0.7324200913242009, - 0.7321917808219178, - 0.7319634703196347, - 0.7317351598173516, - 0.7315068493150685, - 0.7312785388127854, - 0.7310502283105023, - 0.7308219178082191, - 0.730593607305936, - 0.7303652968036529, - 0.7301369863013698, - 0.7299086757990868, - 0.7296803652968037, - 0.7294520547945206, - 0.7292237442922375, - 0.7289954337899544, - 0.7287671232876712, - 0.7285388127853881, - 0.728310502283105, - 0.7280821917808219, - 0.7278538812785388, - 0.7276255707762557, - 0.7273972602739726, - 0.7271689497716896, - 0.7269406392694064, - 0.7267123287671233, - 0.7264840182648402, - 0.7262557077625571, - 0.726027397260274, - 0.7257990867579909, - 0.7255707762557078, - 0.7253424657534246, - 0.7251141552511415, - 0.7248858447488584, - 0.7246575342465753, - 0.7244292237442922, - 0.7242009132420091, - 0.7239726027397261, - 0.723744292237443, - 0.7235159817351599, - 0.7232876712328767, - 0.7230593607305936, - 0.7228310502283105, - 0.7226027397260274, - 0.7223744292237443, - 0.7221461187214612, - 0.7219178082191781, - 0.721689497716895, - 0.7214611872146118, - 0.7212328767123287, - 0.7210045662100457, - 0.7207762557077626, - 0.7205479452054795, - 0.7203196347031964, - 0.7200913242009133, - 0.7198630136986301, - 0.719634703196347, - 0.7194063926940639, - 0.7191780821917808, - 0.7189497716894977, - 0.7187214611872146, - 0.7184931506849315, - 0.7182648401826484, - 0.7180365296803652, - 0.7178082191780822, - 0.7175799086757991, - 0.717351598173516, - 0.7171232876712329, - 0.7168949771689498, - 0.7166666666666667, - 0.7164383561643836, - 0.7162100456621004, - 0.7159817351598173, - 0.7157534246575342, - 0.7155251141552511, - 0.715296803652968, - 0.7150684931506849, - 0.7148401826484019, - 0.7146118721461188, - 0.7143835616438357, - 0.7141552511415525, - 0.7139269406392694, - 0.7136986301369863, - 0.7134703196347032, - 0.7132420091324201, - 0.713013698630137, - 0.7127853881278539, - 0.7125570776255707, - 0.7123287671232876, - 0.7121004566210045, - 0.7118721461187214, - 0.7116438356164384, - 0.7114155251141553, - 0.7111872146118722, - 0.7109589041095891, - 0.710730593607306, - 0.7105022831050228, - 0.7102739726027397, - 0.7100456621004566, - 0.7098173515981735, - 0.7095890410958904, - 0.7093607305936073, - 0.7091324200913242, - 0.7089041095890412, - 0.708675799086758, - 0.7084474885844749, - 0.7082191780821918, - 0.7079908675799087, - 0.7077625570776256, - 0.7075342465753425, - 0.7073059360730594, - 0.7070776255707762, - 0.7068493150684931, - 0.70662100456621, - 0.7063926940639269, - 0.7061643835616438, - 0.7059360730593607, - 0.7057077625570776, - 0.7054794520547946, - 0.7052511415525115, - 0.7050228310502283, - 0.7047945205479452, - 0.7045662100456621, - 0.704337899543379, - 0.7041095890410959, - 0.7038812785388128, - 0.7036529680365297, - 0.7034246575342465, - 0.7031963470319634, - 0.7029680365296803, - 0.7027397260273973, - 0.7025114155251142, - 0.7022831050228311, - 0.702054794520548, - 0.7018264840182649, - 0.7015981735159817, - 0.7013698630136986, - 0.7011415525114155, - 0.7009132420091324, - 0.7006849315068493, - 0.7004566210045662, - 0.7002283105022831, - 0.7, - 0.6997716894977168, - 0.6995433789954338, - 0.6993150684931507, - 0.6990867579908676, - 0.6988584474885845, - 0.6986301369863014, - 0.6984018264840183, - 0.6981735159817352, - 0.697945205479452, - 0.6977168949771689, - 0.6974885844748858, - 0.6972602739726027, - 0.6970319634703196, - 0.6968036529680365, - 0.6965753424657535, - 0.6963470319634704, - 0.6961187214611873, - 0.6958904109589041, - 0.695662100456621, - 0.6954337899543379, - 0.6952054794520548, - 0.6949771689497717, - 0.6947488584474886, - 0.6945205479452055, - 0.6942922374429223, - 0.6940639269406392, - 0.6938356164383561, - 0.693607305936073, - 0.69337899543379, - 0.6931506849315069, - 0.6929223744292238, - 0.6926940639269407, - 0.6924657534246575, - 0.6922374429223744, - 0.6920091324200913, - 0.6917808219178082, - 0.6915525114155251, - 0.691324200913242, - 0.6910958904109589, - 0.6908675799086758, - 0.6906392694063928, - 0.6904109589041096, - 0.6901826484018265, - 0.6899543378995434, - 0.6897260273972603, - 0.6894977168949772, - 0.6892694063926941, - 0.689041095890411, - 0.6888127853881278, - 0.6885844748858447, - 0.6883561643835616, - 0.6881278538812785, - 0.6878995433789954, - 0.6876712328767123, - 0.6874429223744292, - 0.6872146118721462, - 0.686986301369863, - 0.6867579908675799, - 0.6865296803652968, - 0.6863013698630137, - 0.6860730593607306, - 0.6858447488584475, - 0.6856164383561644, - 0.6853881278538813, - 0.6851598173515981, - 0.684931506849315, - 0.6847031963470319, - 0.6844748858447489, - 0.6842465753424658, - 0.6840182648401827, - 0.6837899543378996, - 0.6835616438356165, - 0.6833333333333333, - 0.6831050228310502, - 0.6828767123287671, - 0.682648401826484, - 0.6824200913242009, - 0.6821917808219178, - 0.6819634703196347, - 0.6817351598173516, - 0.6815068493150684, - 0.6812785388127853, - 0.6810502283105023, - 0.6808219178082192, - 0.6805936073059361, - 0.680365296803653, - 0.6801369863013699, - 0.6799086757990868, - 0.6796803652968036, - 0.6794520547945205, - 0.6792237442922374, - 0.6789954337899543, - 0.6787671232876712, - 0.6785388127853882, - 0.6783105022831051, - 0.678082191780822, - 0.6778538812785389, - 0.6776255707762557, - 0.6773972602739726, - 0.6771689497716895, - 0.6769406392694064, - 0.6767123287671233, - 0.6764840182648402, - 0.6762557077625571, - 0.6760273972602739, - 0.6757990867579908, - 0.6755707762557077, - 0.6753424657534246, - 0.6751141552511416, - 0.6748858447488585, - 0.6746575342465754, - 0.6744292237442923, - 0.6742009132420091, - 0.673972602739726, - 0.6737442922374429, - 0.6735159817351598, - 0.6732876712328767, - 0.6730593607305936, - 0.6728310502283105, - 0.6726027397260274, - 0.6723744292237444, - 0.6721461187214612, - 0.6719178082191781, - 0.671689497716895, - 0.6714611872146119, - 0.6712328767123288, - 0.6710045662100457, - 0.6707762557077626, - 0.6705479452054794, - 0.6703196347031963, - 0.6700913242009132, - 0.6698630136986301, - 0.669634703196347, - 0.6694063926940639, - 0.6691780821917808, - 0.6689497716894978, - 0.6687214611872146, - 0.6684931506849315, - 0.6682648401826484, - 0.6680365296803653, - 0.6678082191780822, - 0.6675799086757991, - 0.667351598173516, - 0.6671232876712329, - 0.6668949771689497, - 0.6666666666666666, - 0.6664383561643835, - 0.6662100456621005, - 0.6659817351598174, - 0.6657534246575343, - 0.6655251141552512, - 0.6652968036529681, - 0.665068493150685, - 0.6648401826484018, - 0.6646118721461187, - 0.6643835616438356, - 0.6641552511415525, - 0.6639269406392694, - 0.6636986301369863, - 0.6634703196347032, - 0.66324200913242, - 0.6630136986301369, - 0.6627853881278539, - 0.6625570776255708, - 0.6623287671232877, - 0.6621004566210046, - 0.6618721461187215, - 0.6616438356164384, - 0.6614155251141552, - 0.6611872146118721, - 0.660958904109589, - 0.6607305936073059, - 0.6605022831050228, - 0.6602739726027397, - 0.6600456621004567, - 0.6598173515981736, - 0.6595890410958904, - 0.6593607305936073, - 0.6591324200913242, - 0.6589041095890411, - 0.658675799086758, - 0.6584474885844749, - 0.6582191780821918, - 0.6579908675799087, - 0.6577625570776255, - 0.6575342465753424, - 0.6573059360730593, - 0.6570776255707762, - 0.6568493150684931, - 0.6566210045662101, - 0.656392694063927, - 0.6561643835616439, - 0.6559360730593607, - 0.6557077625570776, - 0.6554794520547945, - 0.6552511415525114, - 0.6550228310502283, - 0.6547945205479452, - 0.6545662100456621, - 0.654337899543379, - 0.654109589041096, - 0.6538812785388128, - 0.6536529680365297, - 0.6534246575342466, - 0.6531963470319635, - 0.6529680365296804, - 0.6527397260273973, - 0.6525114155251142, - 0.652283105022831, - 0.6520547945205479, - 0.6518264840182648, - 0.6515981735159817, - 0.6513698630136986, - 0.6511415525114155, - 0.6509132420091324, - 0.6506849315068494, - 0.6504566210045662, - 0.6502283105022831, - 0.65, - 0.6497716894977169, - 0.6495433789954338, - 0.6493150684931507, - 0.6490867579908676, - 0.6488584474885845, - 0.6486301369863013, - 0.6484018264840182, - 0.6481735159817351, - 0.6479452054794521, - 0.647716894977169, - 0.6474885844748859, - 0.6472602739726028, - 0.6470319634703197, - 0.6468036529680365, - 0.6465753424657534, - 0.6463470319634703, - 0.6461187214611872, - 0.6458904109589041, - 0.645662100456621, - 0.6454337899543379, - 0.6452054794520548, - 0.6449771689497716, - 0.6447488584474885, - 0.6445205479452055, - 0.6442922374429224, - 0.6440639269406393, - 0.6438356164383562, - 0.6436073059360731, - 0.64337899543379, - 0.6431506849315068, - 0.6429223744292237, - 0.6426940639269406, - 0.6424657534246575, - 0.6422374429223744, - 0.6420091324200913, - 0.6417808219178083, - 0.6415525114155252, - 0.641324200913242, - 0.6410958904109589, - 0.6408675799086758, - 0.6406392694063927, - 0.6404109589041096, - 0.6401826484018265, - 0.6399543378995434, - 0.6397260273972603, - 0.6394977168949771, - 0.639269406392694, - 0.6390410958904109, - 0.6388127853881278, - 0.6385844748858447, - 0.6383561643835617, - 0.6381278538812786, - 0.6378995433789955, - 0.6376712328767123, - 0.6374429223744292, - 0.6372146118721461, - 0.636986301369863, - 0.6367579908675799, - 0.6365296803652968, - 0.6363013698630137, - 0.6360730593607306, - 0.6358447488584476, - 0.6356164383561644, - 0.6353881278538813, - 0.6351598173515982, - 0.6349315068493151, - 0.634703196347032, - 0.6344748858447489, - 0.6342465753424658, - 0.6340182648401826, - 0.6337899543378995, - 0.6335616438356164, - 0.6333333333333333, - 0.6331050228310502, - 0.6328767123287671, - 0.632648401826484, - 0.632420091324201, - 0.6321917808219178, - 0.6319634703196347, - 0.6317351598173516, - 0.6315068493150685, - 0.6312785388127854, - 0.6310502283105023, - 0.6308219178082192, - 0.630593607305936, - 0.6303652968036529, - 0.6301369863013698, - 0.6299086757990867, - 0.6296803652968037, - 0.6294520547945206, - 0.6292237442922375, - 0.6289954337899544, - 0.6287671232876713, - 0.6285388127853881, - 0.628310502283105, - 0.6280821917808219, - 0.6278538812785388, - 0.6276255707762557, - 0.6273972602739726, - 0.6271689497716895, - 0.6269406392694064, - 0.6267123287671232, - 0.6264840182648401, - 0.6262557077625571, - 0.626027397260274, - 0.6257990867579909, - 0.6255707762557078, - 0.6253424657534247, - 0.6251141552511416, - 0.6248858447488584, - 0.6246575342465753, - 0.6244292237442922, - 0.6242009132420091, - 0.623972602739726, - 0.623744292237443, - 0.6235159817351599, - 0.6232876712328768, - 0.6230593607305936, - 0.6228310502283105, - 0.6226027397260274, - 0.6223744292237443, - 0.6221461187214612, - 0.6219178082191781, - 0.621689497716895, - 0.6214611872146119, - 0.6212328767123287, - 0.6210045662100456, - 0.6207762557077625, - 0.6205479452054794, - 0.6203196347031963, - 0.6200913242009132, - 0.6198630136986302, - 0.6196347031963471, - 0.619406392694064, - 0.6191780821917808, - 0.6189497716894977, - 0.6187214611872146, - 0.6184931506849315, - 0.6182648401826484, - 0.6180365296803653, - 0.6178082191780822, - 0.6175799086757991, - 0.617351598173516, - 0.6171232876712329, - 0.6168949771689498, - 0.6166666666666667, - 0.6164383561643836, - 0.6162100456621005, - 0.6159817351598174, - 0.6157534246575342, - 0.6155251141552511, - 0.615296803652968, - 0.6150684931506849, - 0.6148401826484018, - 0.6146118721461187, - 0.6143835616438356, - 0.6141552511415524, - 0.6139269406392694, - 0.6136986301369863, - 0.6134703196347032, - 0.6132420091324201, - 0.613013698630137, - 0.6127853881278539, - 0.6125570776255708, - 0.6123287671232877, - 0.6121004566210045, - 0.6118721461187214, - 0.6116438356164384, - 0.6114155251141553, - 0.6111872146118722, - 0.6109589041095891, - 0.610730593607306, - 0.6105022831050229, - 0.6102739726027397, - 0.6100456621004566, - 0.6098173515981735, - 0.6095890410958904, - 0.6093607305936073, - 0.6091324200913242, - 0.6089041095890411, - 0.608675799086758, - 0.6084474885844748, - 0.6082191780821917, - 0.6079908675799086, - 0.6077625570776256, - 0.6075342465753425, - 0.6073059360730594, - 0.6070776255707763, - 0.6068493150684932, - 0.60662100456621, - 0.6063926940639269, - 0.6061643835616438, - 0.6059360730593607, - 0.6057077625570776, - 0.6054794520547946, - 0.6052511415525115, - 0.6050228310502284, - 0.6047945205479452, - 0.6045662100456621, - 0.604337899543379, - 0.6041095890410959, - 0.6038812785388128, - 0.6036529680365297, - 0.6034246575342466, - 0.6031963470319635, - 0.6029680365296803, - 0.6027397260273972, - 0.6025114155251141, - 0.602283105022831, - 0.6020547945205479, - 0.6018264840182648, - 0.6015981735159818, - 0.6013698630136987, - 0.6011415525114155, - 0.6009132420091324, - 0.6006849315068493, - 0.6004566210045662, - 0.6002283105022831, - 0.6, - 0.5997716894977169, - 0.5995433789954338, - 0.5993150684931507, - 0.5990867579908676, - 0.5988584474885845, - 0.5986301369863014, - 0.5984018264840183, - 0.5981735159817352, - 0.5979452054794521, - 0.597716894977169, - 0.5974885844748858, - 0.5972602739726027, - 0.5970319634703196, - 0.5968036529680365, - 0.5965753424657534, - 0.5963470319634703, - 0.5961187214611872, - 0.595890410958904, - 0.5956621004566209, - 0.5954337899543379, - 0.5952054794520548, - 0.5949771689497717, - 0.5947488584474886, - 0.5945205479452055, - 0.5942922374429224, - 0.5940639269406393, - 0.5938356164383561, - 0.593607305936073, - 0.5933789954337899, - 0.5931506849315069, - 0.5929223744292238, - 0.5926940639269407, - 0.5924657534246576, - 0.5922374429223745, - 0.5920091324200913, - 0.5917808219178082, - 0.5915525114155251, - 0.591324200913242, - 0.5910958904109589, - 0.5908675799086758, - 0.5906392694063927, - 0.5904109589041096, - 0.5901826484018264, - 0.5899543378995433, - 0.5897260273972602, - 0.5894977168949772, - 0.5892694063926941, - 0.589041095890411, - 0.5888127853881279, - 0.5885844748858448, - 0.5883561643835616, - 0.5881278538812785, - 0.5878995433789954, - 0.5876712328767123, - 0.5874429223744292, - 0.5872146118721462, - 0.5869863013698631, - 0.58675799086758, - 0.5865296803652968, - 0.5863013698630137, - 0.5860730593607306, - 0.5858447488584475, - 0.5856164383561644, - 0.5853881278538813, - 0.5851598173515982, - 0.584931506849315, - 0.5847031963470319, - 0.5844748858447488, - 0.5842465753424657, - 0.5840182648401826, - 0.5837899543378995, - 0.5835616438356164, - 0.5833333333333334, - 0.5831050228310503, - 0.5828767123287671, - 0.582648401826484, - 0.5824200913242009, - 0.5821917808219178, - 0.5819634703196347, - 0.5817351598173516, - 0.5815068493150685, - 0.5812785388127854, - 0.5810502283105023, - 0.5808219178082192, - 0.5805936073059361, - 0.580365296803653, - 0.5801369863013699, - 0.5799086757990868, - 0.5796803652968037, - 0.5794520547945206, - 0.5792237442922374, - 0.5789954337899543, - 0.5787671232876712, - 0.5785388127853881, - 0.578310502283105, - 0.5780821917808219, - 0.5778538812785388, - 0.5776255707762556, - 0.5773972602739725, - 0.5771689497716895, - 0.5769406392694064, - 0.5767123287671233, - 0.5764840182648402, - 0.5762557077625571, - 0.576027397260274, - 0.5757990867579909, - 0.5755707762557077, - 0.5753424657534246, - 0.5751141552511415, - 0.5748858447488585, - 0.5746575342465754, - 0.5744292237442923, - 0.5742009132420092, - 0.5739726027397261, - 0.5737442922374429, - 0.5735159817351598, - 0.5732876712328767, - 0.5730593607305936, - 0.5728310502283105, - 0.5726027397260274, - 0.5723744292237443, - 0.5721461187214611, - 0.571917808219178, - 0.5716894977168949, - 0.5714611872146118, - 0.5712328767123288, - 0.5710045662100457, - 0.5707762557077626, - 0.5705479452054795, - 0.5703196347031964, - 0.5700913242009132, - 0.5698630136986301, - 0.569634703196347, - 0.5694063926940639, - 0.5691780821917808, - 0.5689497716894978, - 0.5687214611872147, - 0.5684931506849316, - 0.5682648401826484, - 0.5680365296803653, - 0.5678082191780822, - 0.5675799086757991, - 0.567351598173516, - 0.5671232876712329, - 0.5668949771689498, - 0.5666666666666667, - 0.5664383561643835, - 0.5662100456621004, - 0.5659817351598173, - 0.5657534246575342, - 0.5655251141552511, - 0.565296803652968, - 0.565068493150685, - 0.5648401826484019, - 0.5646118721461187, - 0.5643835616438356, - 0.5641552511415525, - 0.5639269406392694, - 0.5636986301369863, - 0.5634703196347032, - 0.5632420091324201, - 0.563013698630137, - 0.562785388127854, - 0.5625570776255708, - 0.5623287671232877, - 0.5621004566210046, - 0.5618721461187215, - 0.5616438356164384, - 0.5614155251141553, - 0.5611872146118722, - 0.560958904109589, - 0.5607305936073059, - 0.5605022831050228, - 0.5602739726027397, - 0.5600456621004566, - 0.5598173515981735, - 0.5595890410958904, - 0.5593607305936072, - 0.5591324200913241, - 0.5589041095890411, - 0.558675799086758, - 0.5584474885844749, - 0.5582191780821918, - 0.5579908675799087, - 0.5577625570776256, - 0.5575342465753425, - 0.5573059360730593, - 0.5570776255707762, - 0.5568493150684931, - 0.5566210045662101, - 0.556392694063927, - 0.5561643835616439, - 0.5559360730593608, - 0.5557077625570777, - 0.5554794520547945, - 0.5552511415525114, - 0.5550228310502283, - 0.5547945205479452, - 0.5545662100456621, - 0.554337899543379, - 0.5541095890410959, - 0.5538812785388127, - 0.5536529680365296, - 0.5534246575342465, - 0.5531963470319634, - 0.5529680365296804, - 0.5527397260273973, - 0.5525114155251142, - 0.5522831050228311, - 0.552054794520548, - 0.5518264840182648, - 0.5515981735159817, - 0.5513698630136986, - 0.5511415525114155, - 0.5509132420091324, - 0.5506849315068494, - 0.5504566210045663, - 0.5502283105022832, - 0.55, - 0.5497716894977169, - 0.5495433789954338, - 0.5493150684931507, - 0.5490867579908676, - 0.5488584474885845, - 0.5486301369863014, - 0.5484018264840183, - 0.5481735159817351, - 0.547945205479452, - 0.5477168949771689, - 0.5474885844748858, - 0.5472602739726027, - 0.5470319634703196, - 0.5468036529680366, - 0.5465753424657535, - 0.5463470319634703, - 0.5461187214611872, - 0.5458904109589041, - 0.545662100456621, - 0.5454337899543379, - 0.5452054794520548, - 0.5449771689497717, - 0.5447488584474885, - 0.5445205479452055, - 0.5442922374429224, - 0.5440639269406393, - 0.5438356164383562, - 0.5436073059360731, - 0.54337899543379, - 0.5431506849315069, - 0.5429223744292238, - 0.5426940639269406, - 0.5424657534246575, - 0.5422374429223744, - 0.5420091324200913, - 0.5417808219178082, - 0.5415525114155251, - 0.541324200913242, - 0.5410958904109588, - 0.5408675799086757, - 0.5406392694063927, - 0.5404109589041096, - 0.5401826484018265, - 0.5399543378995434, - 0.5397260273972603, - 0.5394977168949772, - 0.539269406392694, - 0.5390410958904109, - 0.5388127853881278, - 0.5385844748858447, - 0.5383561643835617, - 0.5381278538812786, - 0.5378995433789955, - 0.5376712328767124, - 0.5374429223744293, - 0.5372146118721461, - 0.536986301369863, - 0.5367579908675799, - 0.5365296803652968, - 0.5363013698630137, - 0.5360730593607306, - 0.5358447488584475, - 0.5356164383561643, - 0.5353881278538812, - 0.5351598173515981, - 0.534931506849315, - 0.5347031963470319, - 0.5344748858447489, - 0.5342465753424658, - 0.5340182648401827, - 0.5337899543378996, - 0.5335616438356164, - 0.5333333333333333, - 0.5331050228310502, - 0.5328767123287671, - 0.532648401826484, - 0.5324200913242009, - 0.5321917808219179, - 0.5319634703196348, - 0.5317351598173516, - 0.5315068493150685, - 0.5312785388127854, - 0.5310502283105023, - 0.5308219178082192, - 0.5305936073059361, - 0.530365296803653, - 0.5301369863013699, - 0.5299086757990867, - 0.5296803652968036, - 0.5294520547945205, - 0.5292237442922374, - 0.5289954337899543, - 0.5287671232876712, - 0.5285388127853882, - 0.528310502283105, - 0.5280821917808219, - 0.5278538812785388, - 0.5276255707762557, - 0.5273972602739726, - 0.5271689497716895, - 0.5269406392694064, - 0.5267123287671233, - 0.5264840182648401, - 0.5262557077625571, - 0.526027397260274, - 0.5257990867579909, - 0.5255707762557078, - 0.5253424657534247, - 0.5251141552511416, - 0.5248858447488585, - 0.5246575342465754, - 0.5244292237442922, - 0.5242009132420091, - 0.523972602739726, - 0.5237442922374429, - 0.5235159817351598, - 0.5232876712328767, - 0.5230593607305936, - 0.5228310502283104, - 0.5226027397260273, - 0.5223744292237443, - 0.5221461187214612, - 0.5219178082191781, - 0.521689497716895, - 0.5214611872146119, - 0.5212328767123288, - 0.5210045662100456, - 0.5207762557077625, - 0.5205479452054794, - 0.5203196347031963, - 0.5200913242009133, - 0.5198630136986302, - 0.5196347031963471, - 0.519406392694064, - 0.5191780821917809, - 0.5189497716894977, - 0.5187214611872146, - 0.5184931506849315, - 0.5182648401826484, - 0.5180365296803653, - 0.5178082191780822, - 0.5175799086757991, - 0.517351598173516, - 0.5171232876712328, - 0.5168949771689497, - 0.5166666666666666, - 0.5164383561643835, - 0.5162100456621005, - 0.5159817351598174, - 0.5157534246575343, - 0.5155251141552512, - 0.515296803652968, - 0.5150684931506849, - 0.5148401826484018, - 0.5146118721461187, - 0.5143835616438356, - 0.5141552511415525, - 0.5139269406392695, - 0.5136986301369864, - 0.5134703196347032, - 0.5132420091324201, - 0.513013698630137, - 0.5127853881278539, - 0.5125570776255708, - 0.5123287671232877, - 0.5121004566210046, - 0.5118721461187214, - 0.5116438356164383, - 0.5114155251141552, - 0.5111872146118721, - 0.510958904109589, - 0.5107305936073059, - 0.5105022831050228, - 0.5102739726027398, - 0.5100456621004567, - 0.5098173515981735, - 0.5095890410958904, - 0.5093607305936073, - 0.5091324200913242, - 0.5089041095890411, - 0.508675799086758, - 0.5084474885844749, - 0.5082191780821917, - 0.5079908675799087, - 0.5077625570776256, - 0.5075342465753425, - 0.5073059360730594, - 0.5070776255707763, - 0.5068493150684932, - 0.5066210045662101, - 0.506392694063927, - 0.5061643835616438, - 0.5059360730593607, - 0.5057077625570776, - 0.5054794520547945, - 0.5052511415525114, - 0.5050228310502283, - 0.5047945205479452, - 0.504566210045662, - 0.5043378995433789, - 0.5041095890410959, - 0.5038812785388128, - 0.5036529680365297, - 0.5034246575342466, - 0.5031963470319635, - 0.5029680365296804, - 0.5027397260273972, - 0.5025114155251141, - 0.502283105022831, - 0.5020547945205479, - 0.5018264840182649, - 0.5015981735159818, - 0.5013698630136987, - 0.5011415525114156, - 0.5009132420091325, - 0.5006849315068493, - 0.5004566210045662, - 0.5002283105022831, - 0.5, - 0.4997716894977169, - 0.4995433789954338, - 0.49931506849315066, - 0.4990867579908676, - 0.4988584474885845, - 0.4986301369863014, - 0.49840182648401826, - 0.49817351598173515, - 0.49794520547945204, - 0.4977168949771689, - 0.49748858447488586, - 0.49726027397260275, - 0.49703196347031964, - 0.4968036529680365, - 0.4965753424657534, - 0.4963470319634703, - 0.49611872146118724, - 0.4958904109589041, - 0.495662100456621, - 0.4954337899543379, - 0.4952054794520548, - 0.4949771689497717, - 0.49474885844748856, - 0.4945205479452055, - 0.4942922374429224, - 0.4940639269406393, - 0.49383561643835616, - 0.49360730593607305, - 0.49337899543378994, - 0.4931506849315068, - 0.49292237442922376, - 0.49269406392694065, - 0.49246575342465754, - 0.4922374429223744, - 0.4920091324200913, - 0.4917808219178082, - 0.49155251141552514, - 0.491324200913242, - 0.4910958904109589, - 0.4908675799086758, - 0.4906392694063927, - 0.4904109589041096, - 0.49018264840182646, - 0.4899543378995434, - 0.4897260273972603, - 0.4894977168949772, - 0.48926940639269406, - 0.48904109589041095, - 0.48881278538812784, - 0.4885844748858447, - 0.48835616438356166, - 0.48812785388127855, - 0.48789954337899544, - 0.4876712328767123, - 0.4874429223744292, - 0.4872146118721461, - 0.48698630136986304, - 0.4867579908675799, - 0.4865296803652968, - 0.4863013698630137, - 0.4860730593607306, - 0.4858447488584475, - 0.48561643835616436, - 0.4853881278538813, - 0.4851598173515982, - 0.4849315068493151, - 0.48470319634703196, - 0.48447488584474885, - 0.48424657534246573, - 0.4840182648401826, - 0.48378995433789956, - 0.48356164383561645, - 0.48333333333333334, - 0.4831050228310502, - 0.4828767123287671, - 0.482648401826484, - 0.48242009132420094, - 0.4821917808219178, - 0.4819634703196347, - 0.4817351598173516, - 0.4815068493150685, - 0.4812785388127854, - 0.48105022831050226, - 0.4808219178082192, - 0.4805936073059361, - 0.480365296803653, - 0.48013698630136986, - 0.47990867579908675, - 0.47968036529680363, - 0.4794520547945205, - 0.47922374429223746, - 0.47899543378995435, - 0.47876712328767124, - 0.4785388127853881, - 0.478310502283105, - 0.4780821917808219, - 0.47785388127853884, - 0.4776255707762557, - 0.4773972602739726, - 0.4771689497716895, - 0.4769406392694064, - 0.4767123287671233, - 0.47648401826484016, - 0.4762557077625571, - 0.476027397260274, - 0.4757990867579909, - 0.47557077625570776, - 0.47534246575342465, - 0.47511415525114153, - 0.4748858447488584, - 0.47465753424657536, - 0.47442922374429225, - 0.47420091324200914, - 0.473972602739726, - 0.4737442922374429, - 0.4735159817351598, - 0.47328767123287674, - 0.4730593607305936, - 0.4728310502283105, - 0.4726027397260274, - 0.4723744292237443, - 0.47214611872146117, - 0.47191780821917806, - 0.471689497716895, - 0.4714611872146119, - 0.4712328767123288, - 0.47100456621004566, - 0.47077625570776255, - 0.47054794520547943, - 0.4703196347031963, - 0.47009132420091326, - 0.46986301369863015, - 0.46963470319634704, - 0.4694063926940639, - 0.4691780821917808, - 0.4689497716894977, - 0.46872146118721464, - 0.4684931506849315, - 0.4682648401826484, - 0.4680365296803653, - 0.4678082191780822, - 0.46757990867579907, - 0.46735159817351596, - 0.4671232876712329, - 0.4668949771689498, - 0.4666666666666667, - 0.46643835616438356, - 0.46621004566210045, - 0.46598173515981733, - 0.4657534246575342, - 0.46552511415525116, - 0.46529680365296805, - 0.46506849315068494, - 0.4648401826484018, - 0.4646118721461187, - 0.4643835616438356, - 0.46415525114155254, - 0.4639269406392694, - 0.4636986301369863, - 0.4634703196347032, - 0.4632420091324201, - 0.46301369863013697, - 0.46278538812785386, - 0.4625570776255708, - 0.4623287671232877, - 0.4621004566210046, - 0.46187214611872146, - 0.46164383561643835, - 0.46141552511415523, - 0.4611872146118721, - 0.46095890410958906, - 0.46073059360730595, - 0.46050228310502284, - 0.4602739726027397, - 0.4600456621004566, - 0.4598173515981735, - 0.45958904109589044, - 0.4593607305936073, - 0.4591324200913242, - 0.4589041095890411, - 0.458675799086758, - 0.45844748858447487, - 0.45821917808219176, - 0.4579908675799087, - 0.4577625570776256, - 0.4575342465753425, - 0.45730593607305936, - 0.45707762557077625, - 0.45684931506849313, - 0.45662100456621, - 0.45639269406392696, - 0.45616438356164385, - 0.45593607305936074, - 0.4557077625570776, - 0.4554794520547945, - 0.4552511415525114, - 0.45502283105022834, - 0.4547945205479452, - 0.4545662100456621, - 0.454337899543379, - 0.4541095890410959, - 0.45388127853881277, - 0.45365296803652966, - 0.4534246575342466, - 0.4531963470319635, - 0.4529680365296804, - 0.45273972602739726, - 0.45251141552511415, - 0.45228310502283103, - 0.4520547945205479, - 0.45182648401826486, - 0.45159817351598175, - 0.45136986301369864, - 0.4511415525114155, - 0.4509132420091324, - 0.4506849315068493, - 0.45045662100456624, - 0.4502283105022831, - 0.45, - 0.4497716894977169, - 0.4495433789954338, - 0.44931506849315067, - 0.44908675799086756, - 0.4488584474885845, - 0.4486301369863014, - 0.4484018264840183, - 0.44817351598173516, - 0.44794520547945205, - 0.44771689497716893, - 0.4474885844748858, - 0.44726027397260276, - 0.44703196347031965, - 0.44680365296803654, - 0.4465753424657534, - 0.4463470319634703, - 0.4461187214611872, - 0.4458904109589041, - 0.445662100456621, - 0.4454337899543379, - 0.4452054794520548, - 0.4449771689497717, - 0.44474885844748857, - 0.44452054794520546, - 0.4442922374429224, - 0.4440639269406393, - 0.4438356164383562, - 0.44360730593607306, - 0.44337899543378995, - 0.44315068493150683, - 0.4429223744292237, - 0.44269406392694066, - 0.44246575342465755, - 0.44223744292237444, - 0.4420091324200913, - 0.4417808219178082, - 0.4415525114155251, - 0.441324200913242, - 0.4410958904109589, - 0.4408675799086758, - 0.4406392694063927, - 0.4404109589041096, - 0.44018264840182647, - 0.43995433789954336, - 0.4397260273972603, - 0.4394977168949772, - 0.4392694063926941, - 0.43904109589041096, - 0.43881278538812785, - 0.43858447488584473, - 0.4383561643835616, - 0.43812785388127856, - 0.43789954337899545, - 0.43767123287671234, - 0.4374429223744292, - 0.4372146118721461, - 0.436986301369863, - 0.4367579908675799, - 0.4365296803652968, - 0.4363013698630137, - 0.4360730593607306, - 0.4358447488584475, - 0.43561643835616437, - 0.43538812785388126, - 0.4351598173515982, - 0.4349315068493151, - 0.434703196347032, - 0.43447488584474886, - 0.43424657534246575, - 0.43401826484018263, - 0.4337899543378995, - 0.43356164383561646, - 0.43333333333333335, - 0.43310502283105023, - 0.4328767123287671, - 0.432648401826484, - 0.4324200913242009, - 0.4321917808219178, - 0.4319634703196347, - 0.4317351598173516, - 0.4315068493150685, - 0.4312785388127854, - 0.43105022831050227, - 0.43082191780821916, - 0.4305936073059361, - 0.430365296803653, - 0.4301369863013699, - 0.42990867579908676, - 0.42968036529680365, - 0.42945205479452053, - 0.4292237442922374, - 0.42899543378995436, - 0.42876712328767125, - 0.42853881278538813, - 0.428310502283105, - 0.4280821917808219, - 0.4278538812785388, - 0.4276255707762557, - 0.4273972602739726, - 0.4271689497716895, - 0.4269406392694064, - 0.4267123287671233, - 0.42648401826484017, - 0.42625570776255706, - 0.426027397260274, - 0.4257990867579909, - 0.42557077625570777, - 0.42534246575342466, - 0.42511415525114155, - 0.42488584474885843, - 0.4246575342465753, - 0.42442922374429226, - 0.42420091324200915, - 0.42397260273972603, - 0.4237442922374429, - 0.4235159817351598, - 0.4232876712328767, - 0.4230593607305936, - 0.4228310502283105, - 0.4226027397260274, - 0.4223744292237443, - 0.4221461187214612, - 0.42191780821917807, - 0.42168949771689496, - 0.4214611872146119, - 0.4212328767123288, - 0.42100456621004567, - 0.42077625570776256, - 0.42054794520547945, - 0.42031963470319633, - 0.4200913242009132, - 0.41986301369863016, - 0.41963470319634705, - 0.41940639269406393, - 0.4191780821917808, - 0.4189497716894977, - 0.4187214611872146, - 0.4184931506849315, - 0.4182648401826484, - 0.4180365296803653, - 0.4178082191780822, - 0.4175799086757991, - 0.41735159817351597, - 0.41712328767123286, - 0.4168949771689498, - 0.4166666666666667, - 0.41643835616438357, - 0.41621004566210046, - 0.41598173515981735, - 0.41575342465753423, - 0.4155251141552511, - 0.41529680365296806, - 0.41506849315068495, - 0.41484018264840183, - 0.4146118721461187, - 0.4143835616438356, - 0.4141552511415525, - 0.4139269406392694, - 0.4136986301369863, - 0.4134703196347032, - 0.4132420091324201, - 0.413013698630137, - 0.41278538812785387, - 0.41255707762557076, - 0.4123287671232877, - 0.4121004566210046, - 0.41187214611872147, - 0.41164383561643836, - 0.41141552511415524, - 0.41118721461187213, - 0.410958904109589, - 0.41073059360730596, - 0.41050228310502285, - 0.41027397260273973, - 0.4100456621004566, - 0.4098173515981735, - 0.4095890410958904, - 0.4093607305936073, - 0.4091324200913242, - 0.4089041095890411, - 0.408675799086758, - 0.4084474885844749, - 0.40821917808219177, - 0.40799086757990866, - 0.4077625570776256, - 0.4075342465753425, - 0.40730593607305937, - 0.40707762557077626, - 0.40684931506849314, - 0.40662100456621003, - 0.4063926940639269, - 0.40616438356164386, - 0.40593607305936075, - 0.40570776255707763, - 0.4054794520547945, - 0.4052511415525114, - 0.4050228310502283, - 0.4047945205479452, - 0.4045662100456621, - 0.404337899543379, - 0.4041095890410959, - 0.4038812785388128, - 0.40365296803652967, - 0.40342465753424656, - 0.4031963470319635, - 0.4029680365296804, - 0.40273972602739727, - 0.40251141552511416, - 0.40228310502283104, - 0.40205479452054793, - 0.4018264840182648, - 0.40159817351598176, - 0.40136986301369865, - 0.40114155251141553, - 0.4009132420091324, - 0.4006849315068493, - 0.4004566210045662, - 0.4002283105022831, - 0.4, - 0.3997716894977169, - 0.3995433789954338, - 0.3993150684931507, - 0.39908675799086757, - 0.39885844748858446, - 0.39863013698630134, - 0.3984018264840183, - 0.39817351598173517, - 0.39794520547945206, - 0.39771689497716894, - 0.39748858447488583, - 0.3972602739726027, - 0.39703196347031966, - 0.39680365296803655, - 0.39657534246575343, - 0.3963470319634703, - 0.3961187214611872, - 0.3958904109589041, - 0.395662100456621, - 0.3954337899543379, - 0.3952054794520548, - 0.3949771689497717, - 0.3947488584474886, - 0.39452054794520547, - 0.39429223744292236, - 0.39406392694063924, - 0.3938356164383562, - 0.39360730593607307, - 0.39337899543378996, - 0.39315068493150684, - 0.39292237442922373, - 0.3926940639269406, - 0.39246575342465756, - 0.39223744292237445, - 0.39200913242009133, - 0.3917808219178082, - 0.3915525114155251, - 0.391324200913242, - 0.3910958904109589, - 0.3908675799086758, - 0.3906392694063927, - 0.3904109589041096, - 0.3901826484018265, - 0.38995433789954337, - 0.38972602739726026, - 0.38949771689497714, - 0.3892694063926941, - 0.38904109589041097, - 0.38881278538812786, - 0.38858447488584474, - 0.38835616438356163, - 0.3881278538812785, - 0.38789954337899546, - 0.38767123287671235, - 0.38744292237442923, - 0.3872146118721461, - 0.386986301369863, - 0.3867579908675799, - 0.3865296803652968, - 0.3863013698630137, - 0.3860730593607306, - 0.3858447488584475, - 0.3856164383561644, - 0.38538812785388127, - 0.38515981735159815, - 0.38493150684931504, - 0.384703196347032, - 0.38447488584474887, - 0.38424657534246576, - 0.38401826484018264, - 0.38378995433789953, - 0.3835616438356164, - 0.38333333333333336, - 0.38310502283105025, - 0.38287671232876713, - 0.382648401826484, - 0.3824200913242009, - 0.3821917808219178, - 0.3819634703196347, - 0.3817351598173516, - 0.3815068493150685, - 0.3812785388127854, - 0.3810502283105023, - 0.38082191780821917, - 0.38059360730593605, - 0.38036529680365294, - 0.3801369863013699, - 0.37990867579908677, - 0.37968036529680366, - 0.37945205479452054, - 0.37922374429223743, - 0.3789954337899543, - 0.37876712328767126, - 0.37853881278538815, - 0.37831050228310503, - 0.3780821917808219, - 0.3778538812785388, - 0.3776255707762557, - 0.3773972602739726, - 0.3771689497716895, - 0.3769406392694064, - 0.3767123287671233, - 0.3764840182648402, - 0.37625570776255707, - 0.37602739726027395, - 0.37579908675799084, - 0.3755707762557078, - 0.37534246575342467, - 0.37511415525114156, - 0.37488584474885844, - 0.37465753424657533, - 0.3744292237442922, - 0.37420091324200916, - 0.37397260273972605, - 0.37374429223744293, - 0.3735159817351598, - 0.3732876712328767, - 0.3730593607305936, - 0.3728310502283105, - 0.3726027397260274, - 0.3723744292237443, - 0.3721461187214612, - 0.3719178082191781, - 0.37168949771689497, - 0.37146118721461185, - 0.37123287671232874, - 0.3710045662100457, - 0.37077625570776257, - 0.37054794520547946, - 0.37031963470319634, - 0.37009132420091323, - 0.3698630136986301, - 0.36963470319634706, - 0.36940639269406395, - 0.36917808219178083, - 0.3689497716894977, - 0.3687214611872146, - 0.3684931506849315, - 0.3682648401826484, - 0.3680365296803653, - 0.3678082191780822, - 0.3675799086757991, - 0.367351598173516, - 0.36712328767123287, - 0.36689497716894975, - 0.36666666666666664, - 0.3664383561643836, - 0.36621004566210047, - 0.36598173515981736, - 0.36575342465753424, - 0.36552511415525113, - 0.365296803652968, - 0.36506849315068496, - 0.36484018264840185, - 0.36461187214611873, - 0.3643835616438356, - 0.3641552511415525, - 0.3639269406392694, - 0.3636986301369863, - 0.3634703196347032, - 0.3632420091324201, - 0.363013698630137, - 0.3627853881278539, - 0.36255707762557077, - 0.36232876712328765, - 0.36210045662100454, - 0.3618721461187215, - 0.36164383561643837, - 0.36141552511415526, - 0.36118721461187214, - 0.36095890410958903, - 0.3607305936073059, - 0.36050228310502286, - 0.36027397260273974, - 0.36004566210045663, - 0.3598173515981735, - 0.3595890410958904, - 0.3593607305936073, - 0.3591324200913242, - 0.3589041095890411, - 0.358675799086758, - 0.3584474885844749, - 0.3582191780821918, - 0.35799086757990867, - 0.35776255707762555, - 0.35753424657534244, - 0.3573059360730594, - 0.35707762557077627, - 0.35684931506849316, - 0.35662100456621004, - 0.35639269406392693, - 0.3561643835616438, - 0.35593607305936076, - 0.35570776255707764, - 0.35547945205479453, - 0.3552511415525114, - 0.3550228310502283, - 0.3547945205479452, - 0.3545662100456621, - 0.354337899543379, - 0.3541095890410959, - 0.3538812785388128, - 0.3536529680365297, - 0.35342465753424657, - 0.35319634703196345, - 0.35296803652968034, - 0.3527397260273973, - 0.35251141552511417, - 0.35228310502283106, - 0.35205479452054794, - 0.35182648401826483, - 0.3515981735159817, - 0.35136986301369866, - 0.35114155251141554, - 0.35091324200913243, - 0.3506849315068493, - 0.3504566210045662, - 0.3502283105022831, - 0.35, - 0.3497716894977169, - 0.3495433789954338, - 0.3493150684931507, - 0.3490867579908676, - 0.34885844748858447, - 0.34863013698630135, - 0.34840182648401824, - 0.3481735159817352, - 0.34794520547945207, - 0.34771689497716896, - 0.34748858447488584, - 0.34726027397260273, - 0.3470319634703196, - 0.3468036529680365, - 0.34657534246575344, - 0.34634703196347033, - 0.3461187214611872, - 0.3458904109589041, - 0.345662100456621, - 0.3454337899543379, - 0.3452054794520548, - 0.3449771689497717, - 0.3447488584474886, - 0.3445205479452055, - 0.34429223744292237, - 0.34406392694063925, - 0.34383561643835614, - 0.3436073059360731, - 0.34337899543378997, - 0.34315068493150686, - 0.34292237442922374, - 0.34269406392694063, - 0.3424657534246575, - 0.3422374429223744, - 0.34200913242009134, - 0.34178082191780823, - 0.3415525114155251, - 0.341324200913242, - 0.3410958904109589, - 0.3408675799086758, - 0.3406392694063927, - 0.3404109589041096, - 0.3401826484018265, - 0.3399543378995434, - 0.33972602739726027, - 0.33949771689497715, - 0.33926940639269404, - 0.339041095890411, - 0.33881278538812787, - 0.33858447488584476, - 0.33835616438356164, - 0.33812785388127853, - 0.3378995433789954, - 0.3376712328767123, - 0.33744292237442924, - 0.33721461187214613, - 0.336986301369863, - 0.3367579908675799, - 0.3365296803652968, - 0.3363013698630137, - 0.3360730593607306, - 0.3358447488584475, - 0.3356164383561644, - 0.3353881278538813, - 0.33515981735159817, - 0.33493150684931505, - 0.33470319634703194, - 0.3344748858447489, - 0.33424657534246577, - 0.33401826484018265, - 0.33378995433789954, - 0.33356164383561643, - 0.3333333333333333, - 0.3331050228310502, - 0.33287671232876714, - 0.33264840182648403, - 0.3324200913242009, - 0.3321917808219178, - 0.3319634703196347, - 0.3317351598173516, - 0.3315068493150685, - 0.3312785388127854, - 0.3310502283105023, - 0.3308219178082192, - 0.33059360730593607, - 0.33036529680365295, - 0.33013698630136984, - 0.3299086757990868, - 0.32968036529680367, - 0.32945205479452055, - 0.32922374429223744, - 0.32899543378995433, - 0.3287671232876712, - 0.3285388127853881, - 0.32831050228310504, - 0.32808219178082193, - 0.3278538812785388, - 0.3276255707762557, - 0.3273972602739726, - 0.3271689497716895, - 0.3269406392694064, - 0.3267123287671233, - 0.3264840182648402, - 0.3262557077625571, - 0.32602739726027397, - 0.32579908675799085, - 0.32557077625570774, - 0.3253424657534247, - 0.32511415525114157, - 0.32488584474885845, - 0.32465753424657534, - 0.32442922374429223, - 0.3242009132420091, - 0.323972602739726, - 0.32374429223744294, - 0.32351598173515983, - 0.3232876712328767, - 0.3230593607305936, - 0.3228310502283105, - 0.3226027397260274, - 0.3223744292237443, - 0.3221461187214612, - 0.3219178082191781, - 0.321689497716895, - 0.32146118721461187, - 0.32123287671232875, - 0.32100456621004564, - 0.3207762557077626, - 0.32054794520547947, - 0.32031963470319635, - 0.32009132420091324, - 0.3198630136986301, - 0.319634703196347, - 0.3194063926940639, - 0.31917808219178084, - 0.31894977168949773, - 0.3187214611872146, - 0.3184931506849315, - 0.3182648401826484, - 0.3180365296803653, - 0.3178082191780822, - 0.3175799086757991, - 0.317351598173516, - 0.3171232876712329, - 0.31689497716894977, - 0.31666666666666665, - 0.31643835616438354, - 0.3162100456621005, - 0.31598173515981737, - 0.31575342465753425, - 0.31552511415525114, - 0.315296803652968, - 0.3150684931506849, - 0.3148401826484018, - 0.31461187214611874, - 0.31438356164383563, - 0.3141552511415525, - 0.3139269406392694, - 0.3136986301369863, - 0.3134703196347032, - 0.3132420091324201, - 0.313013698630137, - 0.3127853881278539, - 0.3125570776255708, - 0.31232876712328766, - 0.31210045662100455, - 0.31187214611872144, - 0.3116438356164384, - 0.31141552511415527, - 0.31118721461187215, - 0.31095890410958904, - 0.3107305936073059, - 0.3105022831050228, - 0.3102739726027397, - 0.31004566210045664, - 0.30981735159817353, - 0.3095890410958904, - 0.3093607305936073, - 0.3091324200913242, - 0.3089041095890411, - 0.308675799086758, - 0.3084474885844749, - 0.3082191780821918, - 0.3079908675799087, - 0.30776255707762556, - 0.30753424657534245, - 0.30730593607305934, - 0.3070776255707763, - 0.30684931506849317, - 0.30662100456621005, - 0.30639269406392694, - 0.3061643835616438, - 0.3059360730593607, - 0.3057077625570776, - 0.30547945205479454, - 0.30525114155251143, - 0.3050228310502283, - 0.3047945205479452, - 0.3045662100456621, - 0.304337899543379, - 0.3041095890410959, - 0.3038812785388128, - 0.3036529680365297, - 0.3034246575342466, - 0.30319634703196346, - 0.30296803652968035, - 0.30273972602739724, - 0.3025114155251142, - 0.30228310502283107, - 0.30205479452054795, - 0.30182648401826484, - 0.3015981735159817, - 0.3013698630136986, - 0.3011415525114155, - 0.30091324200913244, - 0.30068493150684933, - 0.3004566210045662, - 0.3002283105022831, - 0.3, - 0.2997716894977169, - 0.29954337899543376, - 0.2993150684931507, - 0.2990867579908676, - 0.2988584474885845, - 0.29863013698630136, - 0.29840182648401825, - 0.29817351598173514, - 0.2979452054794521, - 0.29771689497716897, - 0.29748858447488585, - 0.29726027397260274, - 0.2970319634703196, - 0.2968036529680365, - 0.2965753424657534, - 0.29634703196347034, - 0.29611872146118723, - 0.2958904109589041, - 0.295662100456621, - 0.2954337899543379, - 0.2952054794520548, - 0.29497716894977166, - 0.2947488584474886, - 0.2945205479452055, - 0.2942922374429224, - 0.29406392694063926, - 0.29383561643835615, - 0.29360730593607304, - 0.29337899543379, - 0.29315068493150687, - 0.29292237442922375, - 0.29269406392694064, - 0.2924657534246575, - 0.2922374429223744, - 0.2920091324200913, - 0.29178082191780824, - 0.29155251141552513, - 0.291324200913242, - 0.2910958904109589, - 0.2908675799086758, - 0.2906392694063927, - 0.29041095890410956, - 0.2901826484018265, - 0.2899543378995434, - 0.2897260273972603, - 0.28949771689497716, - 0.28926940639269405, - 0.28904109589041094, - 0.2888127853881279, - 0.28858447488584477, - 0.28835616438356165, - 0.28812785388127854, - 0.2878995433789954, - 0.2876712328767123, - 0.2874429223744292, - 0.28721461187214614, - 0.28698630136986303, - 0.2867579908675799, - 0.2865296803652968, - 0.2863013698630137, - 0.2860730593607306, - 0.28584474885844746, - 0.2856164383561644, - 0.2853881278538813, - 0.2851598173515982, - 0.28493150684931506, - 0.28470319634703195, - 0.28447488584474884, - 0.2842465753424658, - 0.28401826484018267, - 0.28378995433789955, - 0.28356164383561644, - 0.2833333333333333, - 0.2831050228310502, - 0.2828767123287671, - 0.28264840182648404, - 0.28242009132420093, - 0.2821917808219178, - 0.2819634703196347, - 0.2817351598173516, - 0.2815068493150685, - 0.28127853881278536, - 0.2810502283105023, - 0.2808219178082192, - 0.2805936073059361, - 0.28036529680365296, - 0.28013698630136985, - 0.27990867579908674, - 0.2796803652968037, - 0.27945205479452057, - 0.27922374429223745, - 0.27899543378995434, - 0.2787671232876712, - 0.2785388127853881, - 0.278310502283105, - 0.27808219178082194, - 0.27785388127853883, - 0.2776255707762557, - 0.2773972602739726, - 0.2771689497716895, - 0.2769406392694064, - 0.27671232876712326, - 0.2764840182648402, - 0.2762557077625571, - 0.276027397260274, - 0.27579908675799086, - 0.27557077625570775, - 0.27534246575342464, - 0.2751141552511416, - 0.27488584474885847, - 0.27465753424657535, - 0.27442922374429224, - 0.2742009132420091, - 0.273972602739726, - 0.2737442922374429, - 0.27351598173515984, - 0.2732876712328767, - 0.2730593607305936, - 0.2728310502283105, - 0.2726027397260274, - 0.2723744292237443, - 0.27214611872146116, - 0.2719178082191781, - 0.271689497716895, - 0.2714611872146119, - 0.27123287671232876, - 0.27100456621004565, - 0.27077625570776254, - 0.2705479452054795, - 0.27031963470319637, - 0.27009132420091325, - 0.26986301369863014, - 0.269634703196347, - 0.2694063926940639, - 0.2691780821917808, - 0.26894977168949774, - 0.2687214611872146, - 0.2684931506849315, - 0.2682648401826484, - 0.2680365296803653, - 0.2678082191780822, - 0.26757990867579906, - 0.267351598173516, - 0.2671232876712329, - 0.2668949771689498, - 0.26666666666666666, - 0.26643835616438355, - 0.26621004566210044, - 0.2659817351598174, - 0.26575342465753427, - 0.26552511415525115, - 0.26529680365296804, - 0.2650684931506849, - 0.2648401826484018, - 0.2646118721461187, - 0.26438356164383564, - 0.2641552511415525, - 0.2639269406392694, - 0.2636986301369863, - 0.2634703196347032, - 0.2632420091324201, - 0.26301369863013696, - 0.2627853881278539, - 0.2625570776255708, - 0.2623287671232877, - 0.26210045662100456, - 0.26187214611872145, - 0.26164383561643834, - 0.2614155251141553, - 0.26118721461187216, - 0.26095890410958905, - 0.26073059360730594, - 0.2605022831050228, - 0.2602739726027397, - 0.2600456621004566, - 0.25981735159817354, - 0.2595890410958904, - 0.2593607305936073, - 0.2591324200913242, - 0.2589041095890411, - 0.258675799086758, - 0.25844748858447486, - 0.2582191780821918, - 0.2579908675799087, - 0.2577625570776256, - 0.25753424657534246, - 0.25730593607305935, - 0.25707762557077624, - 0.2568493150684932, - 0.25662100456621006, - 0.25639269406392695, - 0.25616438356164384, - 0.2559360730593607, - 0.2557077625570776, - 0.2554794520547945, - 0.25525114155251144, - 0.2550228310502283, - 0.2547945205479452, - 0.2545662100456621, - 0.254337899543379, - 0.2541095890410959, - 0.25388127853881276, - 0.2536529680365297, - 0.2534246575342466, - 0.2531963470319635, - 0.25296803652968036, - 0.25273972602739725, - 0.25251141552511414, - 0.2522831050228311, - 0.25205479452054796, - 0.25182648401826485, - 0.25159817351598174, - 0.2513698630136986, - 0.2511415525114155, - 0.2509132420091324, - 0.25068493150684934, - 0.2504566210045662, - 0.2502283105022831, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.25, - 0.2502283105022831, - 0.2504566210045662, - 0.25068493150684934, - 0.2509132420091324, - 0.2511415525114155, - 0.2513698630136986, - 0.25159817351598174, - 0.25182648401826485, - 0.25205479452054796, - 0.252283105022831, - 0.25251141552511414, - 0.25273972602739725, - 0.25296803652968036, - 0.2531963470319635, - 0.2534246575342466, - 0.2536529680365297, - 0.25388127853881276, - 0.2541095890410959, - 0.254337899543379, - 0.2545662100456621, - 0.2547945205479452, - 0.2550228310502283, - 0.25525114155251144, - 0.2554794520547945, - 0.2557077625570776, - 0.2559360730593607, - 0.25616438356164384, - 0.25639269406392695, - 0.25662100456621006, - 0.2568493150684932, - 0.25707762557077624, - 0.25730593607305935, - 0.25753424657534246, - 0.2577625570776256, - 0.2579908675799087, - 0.2582191780821918, - 0.25844748858447486, - 0.258675799086758, - 0.2589041095890411, - 0.2591324200913242, - 0.2593607305936073, - 0.2595890410958904, - 0.25981735159817354, - 0.2600456621004566, - 0.2602739726027397, - 0.2605022831050228, - 0.26073059360730594, - 0.26095890410958905, - 0.26118721461187216, - 0.2614155251141552, - 0.26164383561643834, - 0.26187214611872145, - 0.26210045662100456, - 0.2623287671232877, - 0.2625570776255708, - 0.2627853881278539, - 0.26301369863013696, - 0.2632420091324201, - 0.2634703196347032, - 0.2636986301369863, - 0.2639269406392694, - 0.2641552511415525, - 0.26438356164383564, - 0.2646118721461187, - 0.2648401826484018, - 0.2650684931506849, - 0.26529680365296804, - 0.26552511415525115, - 0.26575342465753427, - 0.2659817351598174, - 0.26621004566210044, - 0.26643835616438355, - 0.26666666666666666, - 0.2668949771689498, - 0.2671232876712329, - 0.267351598173516, - 0.26757990867579906, - 0.2678082191780822, - 0.2680365296803653, - 0.2682648401826484, - 0.2684931506849315, - 0.2687214611872146, - 0.26894977168949774, - 0.2691780821917808, - 0.2694063926940639, - 0.269634703196347, - 0.26986301369863014, - 0.27009132420091325, - 0.27031963470319637, - 0.2705479452054794, - 0.27077625570776254, - 0.27100456621004565, - 0.27123287671232876, - 0.2714611872146119, - 0.271689497716895, - 0.2719178082191781, - 0.2721461187214612, - 0.2723744292237443, - 0.2726027397260274, - 0.2728310502283105, - 0.2730593607305936, - 0.2732876712328767, - 0.27351598173515984, - 0.2737442922374429, - 0.273972602739726, - 0.2742009132420091, - 0.27442922374429224, - 0.27465753424657535, - 0.27488584474885847, - 0.2751141552511416, - 0.27534246575342464, - 0.27557077625570775, - 0.27579908675799086, - 0.276027397260274, - 0.2762557077625571, - 0.2764840182648402, - 0.27671232876712326, - 0.2769406392694064, - 0.2771689497716895, - 0.2773972602739726, - 0.2776255707762557, - 0.27785388127853883, - 0.27808219178082194, - 0.278310502283105, - 0.2785388127853881, - 0.2787671232876712, - 0.27899543378995434, - 0.27922374429223745, - 0.27945205479452057, - 0.2796803652968036, - 0.27990867579908674, - 0.28013698630136985, - 0.28036529680365296, - 0.2805936073059361, - 0.2808219178082192, - 0.2810502283105023, - 0.2812785388127854, - 0.2815068493150685, - 0.2817351598173516, - 0.2819634703196347, - 0.2821917808219178, - 0.28242009132420093, - 0.28264840182648404, - 0.2828767123287671, - 0.2831050228310502, - 0.2833333333333333, - 0.28356164383561644, - 0.28378995433789955, - 0.28401826484018267, - 0.2842465753424658, - 0.28447488584474884, - 0.28470319634703195, - 0.28493150684931506, - 0.2851598173515982, - 0.2853881278538813, - 0.2856164383561644, - 0.28584474885844746, - 0.2860730593607306, - 0.2863013698630137, - 0.2865296803652968, - 0.2867579908675799, - 0.28698630136986303, - 0.28721461187214614, - 0.2874429223744292, - 0.2876712328767123, - 0.2878995433789954, - 0.28812785388127854, - 0.28835616438356165, - 0.28858447488584477, - 0.2888127853881278, - 0.28904109589041094, - 0.28926940639269405, - 0.28949771689497716, - 0.2897260273972603, - 0.2899543378995434, - 0.2901826484018265, - 0.2904109589041096, - 0.2906392694063927, - 0.2908675799086758, - 0.2910958904109589, - 0.291324200913242, - 0.29155251141552513, - 0.29178082191780824, - 0.2920091324200913, - 0.2922374429223744, - 0.2924657534246575, - 0.29269406392694064, - 0.29292237442922375, - 0.29315068493150687, - 0.29337899543379, - 0.29360730593607304, - 0.29383561643835615, - 0.29406392694063926, - 0.2942922374429224, - 0.2945205479452055, - 0.2947488584474886, - 0.29497716894977166, - 0.2952054794520548, - 0.2954337899543379, - 0.295662100456621, - 0.2958904109589041, - 0.29611872146118723, - 0.29634703196347034, - 0.29657534246575346, - 0.2968036529680365, - 0.2970319634703196, - 0.29726027397260274, - 0.29748858447488585, - 0.29771689497716897, - 0.297945205479452, - 0.29817351598173514, - 0.29840182648401825, - 0.29863013698630136, - 0.2988584474885845, - 0.2990867579908676, - 0.2993150684931507, - 0.2995433789954338, - 0.2997716894977169, - 0.3, - 0.3002283105022831, - 0.3004566210045662, - 0.30068493150684933, - 0.30091324200913244, - 0.3011415525114155, - 0.3013698630136986, - 0.3015981735159817, - 0.30182648401826484, - 0.30205479452054795, - 0.30228310502283107, - 0.3025114155251142, - 0.30273972602739724, - 0.30296803652968035, - 0.30319634703196346, - 0.3034246575342466, - 0.3036529680365297, - 0.3038812785388128, - 0.30410958904109586, - 0.304337899543379, - 0.3045662100456621, - 0.3047945205479452, - 0.3050228310502283, - 0.30525114155251143, - 0.30547945205479454, - 0.30570776255707766, - 0.3059360730593607, - 0.3061643835616438, - 0.30639269406392694, - 0.30662100456621005, - 0.30684931506849317, - 0.3070776255707762, - 0.30730593607305934, - 0.30753424657534245, - 0.30776255707762556, - 0.3079908675799087, - 0.3082191780821918, - 0.3084474885844749, - 0.308675799086758, - 0.3089041095890411, - 0.3091324200913242, - 0.3093607305936073, - 0.3095890410958904, - 0.30981735159817353, - 0.31004566210045664, - 0.3102739726027397, - 0.3105022831050228, - 0.3107305936073059, - 0.31095890410958904, - 0.31118721461187215, - 0.31141552511415527, - 0.3116438356164384, - 0.31187214611872144, - 0.31210045662100455, - 0.31232876712328766, - 0.3125570776255708, - 0.3127853881278539, - 0.313013698630137, - 0.31324200913242006, - 0.3134703196347032, - 0.3136986301369863, - 0.3139269406392694, - 0.3141552511415525, - 0.31438356164383563, - 0.31461187214611874, - 0.31484018264840186, - 0.3150684931506849, - 0.315296803652968, - 0.31552511415525114, - 0.31575342465753425, - 0.31598173515981737, - 0.3162100456621004, - 0.31643835616438354, - 0.31666666666666665, - 0.31689497716894977, - 0.3171232876712329, - 0.317351598173516, - 0.3175799086757991, - 0.3178082191780822, - 0.3180365296803653, - 0.3182648401826484, - 0.3184931506849315, - 0.3187214611872146, - 0.31894977168949773, - 0.3191780821917808, - 0.3194063926940639, - 0.319634703196347, - 0.3198630136986301, - 0.32009132420091324, - 0.32031963470319635, - 0.32054794520547947, - 0.3207762557077626, - 0.3210045662100457, - 0.32123287671232875, - 0.32146118721461187, - 0.321689497716895, - 0.3219178082191781, - 0.3221461187214612, - 0.32237442922374426, - 0.3226027397260274, - 0.3228310502283105, - 0.3230593607305936, - 0.3232876712328767, - 0.32351598173515983, - 0.32374429223744294, - 0.32397260273972606, - 0.3242009132420091, - 0.32442922374429223, - 0.32465753424657534, - 0.32488584474885845, - 0.32511415525114157, - 0.3253424657534246, - 0.32557077625570774, - 0.32579908675799085, - 0.32602739726027397, - 0.3262557077625571, - 0.3264840182648402, - 0.3267123287671233, - 0.3269406392694064, - 0.32716894977168953, - 0.3273972602739726, - 0.3276255707762557, - 0.3278538812785388, - 0.32808219178082193, - 0.32831050228310504, - 0.3285388127853881, - 0.3287671232876712, - 0.32899543378995433, - 0.32922374429223744, - 0.32945205479452055, - 0.32968036529680367, - 0.3299086757990868, - 0.3301369863013699, - 0.33036529680365295, - 0.33059360730593607, - 0.3308219178082192, - 0.3310502283105023, - 0.3312785388127854, - 0.33150684931506846, - 0.3317351598173516, - 0.3319634703196347, - 0.3321917808219178, - 0.3324200913242009, - 0.33264840182648403, - 0.33287671232876714, - 0.33310502283105026, - 0.3333333333333333, - 0.33356164383561643, - 0.33378995433789954, - 0.33401826484018265, - 0.33424657534246577, - 0.3344748858447488, - 0.33470319634703194, - 0.33493150684931505, - 0.33515981735159817, - 0.3353881278538813, - 0.3356164383561644, - 0.3358447488584475, - 0.3360730593607306, - 0.33630136986301373, - 0.3365296803652968, - 0.3367579908675799, - 0.336986301369863, - 0.33721461187214613, - 0.33744292237442924, - 0.3376712328767123, - 0.3378995433789954, - 0.33812785388127853, - 0.33835616438356164, - 0.33858447488584476, - 0.33881278538812787, - 0.339041095890411, - 0.3392694063926941, - 0.33949771689497715, - 0.33972602739726027, - 0.3399543378995434, - 0.3401826484018265, - 0.3404109589041096, - 0.34063926940639266, - 0.3408675799086758, - 0.3410958904109589, - 0.341324200913242, - 0.3415525114155251, - 0.34178082191780823, - 0.34200913242009134, - 0.34223744292237446, - 0.3424657534246575, - 0.34269406392694063, - 0.34292237442922374, - 0.34315068493150686, - 0.34337899543378997, - 0.343607305936073, - 0.34383561643835614, - 0.34406392694063925, - 0.34429223744292237, - 0.3445205479452055, - 0.3447488584474886, - 0.3449771689497717, - 0.3452054794520548, - 0.34543378995433793, - 0.345662100456621, - 0.3458904109589041, - 0.3461187214611872, - 0.34634703196347033, - 0.34657534246575344, - 0.3468036529680365, - 0.3470319634703196, - 0.34726027397260273, - 0.34748858447488584, - 0.34771689497716896, - 0.34794520547945207, - 0.3481735159817352, - 0.3484018264840183, - 0.34863013698630135, - 0.34885844748858447, - 0.3490867579908676, - 0.3493150684931507, - 0.3495433789954338, - 0.34977168949771686, - 0.35, - 0.3502283105022831, - 0.3504566210045662, - 0.3506849315068493, - 0.35091324200913243, - 0.35114155251141554, - 0.35136986301369866, - 0.3515981735159817, - 0.35182648401826483, - 0.35205479452054794, - 0.35228310502283106, - 0.35251141552511417, - 0.3527397260273972, - 0.35296803652968034, - 0.35319634703196345, - 0.35342465753424657, - 0.3536529680365297, - 0.3538812785388128, - 0.3541095890410959, - 0.354337899543379, - 0.35456621004566213, - 0.3547945205479452, - 0.3550228310502283, - 0.3552511415525114, - 0.35547945205479453, - 0.35570776255707764, - 0.3559360730593607, - 0.3561643835616438, - 0.35639269406392693, - 0.35662100456621004, - 0.35684931506849316, - 0.35707762557077627, - 0.3573059360730594, - 0.3575342465753425, - 0.35776255707762555, - 0.35799086757990867, - 0.3582191780821918, - 0.3584474885844749, - 0.358675799086758, - 0.35890410958904106, - 0.3591324200913242, - 0.3593607305936073, - 0.3595890410958904, - 0.3598173515981735, - 0.36004566210045663, - 0.36027397260273974, - 0.36050228310502286, - 0.3607305936073059, - 0.36095890410958903, - 0.36118721461187214, - 0.36141552511415526, - 0.36164383561643837, - 0.3618721461187214, - 0.36210045662100454, - 0.36232876712328765, - 0.36255707762557077, - 0.3627853881278539, - 0.363013698630137, - 0.3632420091324201, - 0.3634703196347032, - 0.36369863013698633, - 0.3639269406392694, - 0.3641552511415525, - 0.3643835616438356, - 0.36461187214611873, - 0.36484018264840185, - 0.3650684931506849, - 0.365296803652968, - 0.36552511415525113, - 0.36575342465753424, - 0.36598173515981736, - 0.36621004566210047, - 0.3664383561643836, - 0.3666666666666667, - 0.36689497716894975, - 0.36712328767123287, - 0.367351598173516, - 0.3675799086757991, - 0.3678082191780822, - 0.36803652968036527, - 0.3682648401826484, - 0.3684931506849315, - 0.3687214611872146, - 0.3689497716894977, - 0.36917808219178083, - 0.36940639269406395, - 0.36963470319634706, - 0.3698630136986301, - 0.37009132420091323, - 0.37031963470319634, - 0.37054794520547946, - 0.37077625570776257, - 0.3710045662100456, - 0.37123287671232874, - 0.37146118721461185, - 0.37168949771689497, - 0.3719178082191781, - 0.3721461187214612, - 0.3723744292237443, - 0.3726027397260274, - 0.37283105022831053, - 0.3730593607305936, - 0.3732876712328767, - 0.3735159817351598, - 0.37374429223744293, - 0.37397260273972605, - 0.3742009132420091, - 0.3744292237442922, - 0.37465753424657533, - 0.37488584474885844, - 0.37511415525114156, - 0.37534246575342467, - 0.3755707762557078, - 0.3757990867579909, - 0.376027397260274, - 0.37625570776255707, - 0.3764840182648402, - 0.3767123287671233, - 0.37694063926940635, - 0.37716894977168947, - 0.3773972602739726, - 0.3776255707762557, - 0.3778538812785388, - 0.3780821917808219, - 0.37831050228310503, - 0.37853881278538815, - 0.37876712328767126, - 0.3789954337899544, - 0.37922374429223743, - 0.37945205479452054, - 0.37968036529680366, - 0.37990867579908677, - 0.38013698630136983, - 0.38036529680365294, - 0.38059360730593605, - 0.38082191780821917, - 0.3810502283105023, - 0.3812785388127854, - 0.3815068493150685, - 0.3817351598173516, - 0.38196347031963473, - 0.38219178082191785, - 0.3824200913242009, - 0.382648401826484, - 0.38287671232876713, - 0.3831050228310502, - 0.3833333333333333, - 0.3835616438356164, - 0.38378995433789953, - 0.38401826484018264, - 0.38424657534246576, - 0.38447488584474887, - 0.384703196347032, - 0.3849315068493151, - 0.3851598173515982, - 0.38538812785388127, - 0.3856164383561644, - 0.3858447488584475, - 0.38607305936073055, - 0.38630136986301367, - 0.3865296803652968, - 0.3867579908675799, - 0.386986301369863, - 0.3872146118721461, - 0.38744292237442923, - 0.38767123287671235, - 0.38789954337899546, - 0.3881278538812786, - 0.38835616438356163, - 0.38858447488584474, - 0.38881278538812786, - 0.38904109589041097, - 0.38926940639269403, - 0.38949771689497714, - 0.38972602739726026, - 0.38995433789954337, - 0.3901826484018265, - 0.3904109589041096, - 0.3906392694063927, - 0.3908675799086758, - 0.39109589041095894, - 0.39132420091324205, - 0.3915525114155251, - 0.3917808219178082, - 0.39200913242009133, - 0.3922374429223744, - 0.3924657534246575, - 0.3926940639269406, - 0.39292237442922373, - 0.39315068493150684, - 0.39337899543378996, - 0.39360730593607307, - 0.3938356164383562, - 0.3940639269406393, - 0.3942922374429224, - 0.39452054794520547, - 0.3947488584474886, - 0.3949771689497717, - 0.39520547945205475, - 0.39543378995433787, - 0.395662100456621, - 0.3958904109589041, - 0.3961187214611872, - 0.3963470319634703, - 0.39657534246575343, - 0.39680365296803655, - 0.39703196347031966, - 0.3972602739726028, - 0.39748858447488583, - 0.39771689497716894, - 0.39794520547945206, - 0.39817351598173517, - 0.39840182648401823, - 0.39863013698630134, - 0.39885844748858446, - 0.39908675799086757, - 0.3993150684931507, - 0.3995433789954338, - 0.3997716894977169, - 0.4, - 0.40022831050228314, - 0.40045662100456625, - 0.4006849315068493, - 0.4009132420091324, - 0.40114155251141553, - 0.4013698630136986, - 0.4015981735159817, - 0.4018264840182648, - 0.40205479452054793, - 0.40228310502283104, - 0.40251141552511416, - 0.40273972602739727, - 0.4029680365296804, - 0.4031963470319635, - 0.4034246575342466, - 0.40365296803652967, - 0.4038812785388128, - 0.4041095890410959, - 0.404337899543379, - 0.40456621004566207, - 0.4047945205479452, - 0.4050228310502283, - 0.4052511415525114, - 0.4054794520547945, - 0.40570776255707763, - 0.40593607305936075, - 0.40616438356164386, - 0.406392694063927, - 0.4066210045662101, - 0.40684931506849314, - 0.40707762557077626, - 0.40730593607305937, - 0.40753424657534243, - 0.40776255707762554, - 0.40799086757990866, - 0.40821917808219177, - 0.4084474885844749, - 0.408675799086758, - 0.4089041095890411, - 0.4091324200913242, - 0.40936073059360734, - 0.40958904109589045, - 0.4098173515981735, - 0.4100456621004566, - 0.41027397260273973, - 0.4105022831050228, - 0.4107305936073059, - 0.410958904109589, - 0.41118721461187213, - 0.41141552511415524, - 0.41164383561643836, - 0.41187214611872147, - 0.4121004566210046, - 0.4123287671232877, - 0.4125570776255708, - 0.41278538812785387, - 0.413013698630137, - 0.4132420091324201, - 0.4134703196347032, - 0.41369863013698627, - 0.4139269406392694, - 0.4141552511415525, - 0.4143835616438356, - 0.4146118721461187, - 0.41484018264840183, - 0.41506849315068495, - 0.41529680365296806, - 0.4155251141552512, - 0.4157534246575343, - 0.41598173515981735, - 0.41621004566210046, - 0.41643835616438357, - 0.41666666666666663, - 0.41689497716894974, - 0.41712328767123286, - 0.41735159817351597, - 0.4175799086757991, - 0.4178082191780822, - 0.4180365296803653, - 0.4182648401826484, - 0.41849315068493154, - 0.41872146118721465, - 0.4189497716894977, - 0.4191780821917808, - 0.41940639269406393, - 0.419634703196347, - 0.4198630136986301, - 0.4200913242009132, - 0.42031963470319633, - 0.42054794520547945, - 0.42077625570776256, - 0.42100456621004567, - 0.4212328767123288, - 0.4214611872146119, - 0.421689497716895, - 0.42191780821917807, - 0.4221461187214612, - 0.4223744292237443, - 0.4226027397260274, - 0.42283105022831047, - 0.4230593607305936, - 0.4232876712328767, - 0.4235159817351598, - 0.4237442922374429, - 0.42397260273972603, - 0.42420091324200915, - 0.42442922374429226, - 0.4246575342465754, - 0.4248858447488585, - 0.42511415525114155, - 0.42534246575342466, - 0.42557077625570777, - 0.42579908675799083, - 0.42602739726027394, - 0.42625570776255706, - 0.42648401826484017, - 0.4267123287671233, - 0.4269406392694064, - 0.4271689497716895, - 0.4273972602739726, - 0.42762557077625574, - 0.42785388127853885, - 0.4280821917808219, - 0.428310502283105, - 0.42853881278538813, - 0.4287671232876712, - 0.4289954337899543, - 0.4292237442922374, - 0.42945205479452053, - 0.42968036529680365, - 0.42990867579908676, - 0.4301369863013699, - 0.430365296803653, - 0.4305936073059361, - 0.4308219178082192, - 0.43105022831050227, - 0.4312785388127854, - 0.4315068493150685, - 0.4317351598173516, - 0.43196347031963467, - 0.4321917808219178, - 0.4324200913242009, - 0.432648401826484, - 0.4328767123287671, - 0.43310502283105023, - 0.43333333333333335, - 0.43356164383561646, - 0.4337899543378996, - 0.4340182648401827, - 0.43424657534246575, - 0.43447488584474886, - 0.434703196347032, - 0.43493150684931503, - 0.43515981735159814, - 0.43538812785388126, - 0.43561643835616437, - 0.4358447488584475, - 0.4360730593607306, - 0.4363013698630137, - 0.4365296803652968, - 0.43675799086757994, - 0.43698630136986305, - 0.4372146118721461, - 0.4374429223744292, - 0.43767123287671234, - 0.4378995433789954, - 0.4381278538812785, - 0.4383561643835616, - 0.43858447488584473, - 0.43881278538812785, - 0.43904109589041096, - 0.4392694063926941, - 0.4394977168949772, - 0.4397260273972603, - 0.4399543378995434, - 0.44018264840182647, - 0.4404109589041096, - 0.4406392694063927, - 0.4408675799086758, - 0.44109589041095887, - 0.441324200913242, - 0.4415525114155251, - 0.4417808219178082, - 0.4420091324200913, - 0.44223744292237444, - 0.44246575342465755, - 0.44269406392694066, - 0.4429223744292238, - 0.4431506849315069, - 0.44337899543378995, - 0.44360730593607306, - 0.4438356164383562, - 0.44406392694063923, - 0.44429223744292234, - 0.44452054794520546, - 0.44474885844748857, - 0.4449771689497717, - 0.4452054794520548, - 0.4454337899543379, - 0.445662100456621, - 0.44589041095890414, - 0.44611872146118725, - 0.4463470319634703, - 0.4465753424657534, - 0.44680365296803654, - 0.4470319634703196, - 0.4472602739726027, - 0.4474885844748858, - 0.44771689497716893, - 0.44794520547945205, - 0.44817351598173516, - 0.4484018264840183, - 0.4486301369863014, - 0.4488584474885845, - 0.4490867579908676, - 0.44931506849315067, - 0.4495433789954338, - 0.4497716894977169, - 0.45, - 0.45022831050228307, - 0.4504566210045662, - 0.4506849315068493, - 0.4509132420091324, - 0.4511415525114155, - 0.45136986301369864, - 0.45159817351598175, - 0.45182648401826486, - 0.452054794520548, - 0.4522831050228311, - 0.45251141552511415, - 0.45273972602739726, - 0.4529680365296804, - 0.45319634703196343, - 0.45342465753424654, - 0.45365296803652966, - 0.45388127853881277, - 0.4541095890410959, - 0.454337899543379, - 0.4545662100456621, - 0.4547945205479452, - 0.45502283105022834, - 0.45525114155251145, - 0.4554794520547945, - 0.4557077625570776, - 0.45593607305936074, - 0.45616438356164385, - 0.4563926940639269, - 0.45662100456621, - 0.45684931506849313, - 0.45707762557077625, - 0.45730593607305936, - 0.4575342465753425, - 0.4577625570776256, - 0.4579908675799087, - 0.4582191780821918, - 0.4584474885844749, - 0.458675799086758, - 0.4589041095890411, - 0.4591324200913242, - 0.45936073059360727, - 0.4595890410958904, - 0.4598173515981735, - 0.4600456621004566, - 0.4602739726027397, - 0.46050228310502284, - 0.46073059360730595, - 0.46095890410958906, - 0.4611872146118722, - 0.4614155251141553, - 0.46164383561643835, - 0.46187214611872146, - 0.4621004566210046, - 0.46232876712328763, - 0.46255707762557075, - 0.46278538812785386, - 0.46301369863013697, - 0.4632420091324201, - 0.4634703196347032, - 0.4636986301369863, - 0.4639269406392694, - 0.46415525114155254, - 0.46438356164383565, - 0.4646118721461187, - 0.4648401826484018, - 0.46506849315068494, - 0.46529680365296805, - 0.4655251141552511, - 0.4657534246575342, - 0.46598173515981733, - 0.46621004566210045, - 0.46643835616438356, - 0.4666666666666667, - 0.4668949771689498, - 0.4671232876712329, - 0.467351598173516, - 0.4675799086757991, - 0.4678082191780822, - 0.4680365296803653, - 0.4682648401826484, - 0.46849315068493147, - 0.4687214611872146, - 0.4689497716894977, - 0.4691780821917808, - 0.4694063926940639, - 0.46963470319634704, - 0.46986301369863015, - 0.47009132420091326, - 0.4703196347031964, - 0.4705479452054795, - 0.47077625570776255, - 0.47100456621004566, - 0.4712328767123288, - 0.47146118721461183, - 0.47168949771689495, - 0.47191780821917806, - 0.47214611872146117, - 0.4723744292237443, - 0.4726027397260274, - 0.4728310502283105, - 0.4730593607305936, - 0.47328767123287674, - 0.47351598173515985, - 0.4737442922374429, - 0.473972602739726, - 0.47420091324200914, - 0.47442922374429225, - 0.4746575342465753, - 0.4748858447488584, - 0.47511415525114153, - 0.47534246575342465, - 0.47557077625570776, - 0.4757990867579909, - 0.476027397260274, - 0.4762557077625571, - 0.4764840182648402, - 0.47671232876712333, - 0.4769406392694064, - 0.4771689497716895, - 0.4773972602739726, - 0.47762557077625567, - 0.4778538812785388, - 0.4780821917808219, - 0.478310502283105, - 0.4785388127853881, - 0.47876712328767124, - 0.47899543378995435, - 0.47922374429223746, - 0.4794520547945206, - 0.4796803652968037, - 0.47990867579908675, - 0.48013698630136986, - 0.480365296803653, - 0.48059360730593603, - 0.48082191780821915, - 0.48105022831050226, - 0.4812785388127854, - 0.4815068493150685, - 0.4817351598173516, - 0.4819634703196347, - 0.4821917808219178, - 0.48242009132420094, - 0.48264840182648405, - 0.4828767123287671, - 0.4831050228310502, - 0.48333333333333334, - 0.48356164383561645, - 0.4837899543378995, - 0.4840182648401826, - 0.48424657534246573, - 0.48447488584474885, - 0.48470319634703196, - 0.4849315068493151, - 0.4851598173515982, - 0.4853881278538813, - 0.4856164383561644, - 0.48584474885844753, - 0.4860730593607306, - 0.4863013698630137, - 0.4865296803652968, - 0.48675799086757987, - 0.486986301369863, - 0.4872146118721461, - 0.4874429223744292, - 0.4876712328767123, - 0.48789954337899544, - 0.48812785388127855, - 0.48835616438356166, - 0.4885844748858448, - 0.4888127853881279, - 0.48904109589041095, - 0.48926940639269406, - 0.4894977168949772, - 0.48972602739726023, - 0.48995433789954335, - 0.49018264840182646, - 0.4904109589041096, - 0.4906392694063927, - 0.4908675799086758, - 0.4910958904109589, - 0.491324200913242, - 0.49155251141552514, - 0.49178082191780825, - 0.4920091324200913, - 0.4922374429223744, - 0.49246575342465754, - 0.49269406392694065, - 0.4929223744292237, - 0.4931506849315068, - 0.49337899543378994, - 0.49360730593607305, - 0.49383561643835616, - 0.4940639269406393, - 0.4942922374429224, - 0.4945205479452055, - 0.4947488584474886, - 0.49497716894977173, - 0.4952054794520548, - 0.4954337899543379, - 0.495662100456621, - 0.49589041095890407, - 0.4961187214611872, - 0.4963470319634703, - 0.4965753424657534, - 0.4968036529680365, - 0.49703196347031964, - 0.49726027397260275, - 0.49748858447488586, - 0.497716894977169, - 0.4979452054794521, - 0.49817351598173515, - 0.49840182648401826, - 0.4986301369863014, - 0.49885844748858443, - 0.49908675799086755, - 0.49931506849315066, - 0.4995433789954338, - 0.4997716894977169, - 0.5, - 0.5002283105022831, - 0.5004566210045662, - 0.5006849315068493, - 0.5009132420091325, - 0.5011415525114156, - 0.5013698630136987, - 0.5015981735159818, - 0.5018264840182649, - 0.502054794520548, - 0.5022831050228311, - 0.5025114155251141, - 0.5027397260273972, - 0.5029680365296804, - 0.5031963470319635, - 0.5034246575342466, - 0.5036529680365297, - 0.5038812785388127, - 0.5041095890410958, - 0.5043378995433789, - 0.504566210045662, - 0.5047945205479452, - 0.5050228310502283, - 0.5052511415525114, - 0.5054794520547945, - 0.5057077625570776, - 0.5059360730593607, - 0.5061643835616438, - 0.506392694063927, - 0.5066210045662101, - 0.5068493150684932, - 0.5070776255707763, - 0.5073059360730594, - 0.5075342465753425, - 0.5077625570776256, - 0.5079908675799087, - 0.5082191780821919, - 0.5084474885844749, - 0.508675799086758, - 0.5089041095890411, - 0.5091324200913242, - 0.5093607305936073, - 0.5095890410958904, - 0.5098173515981735, - 0.5100456621004565, - 0.5102739726027397, - 0.5105022831050228, - 0.5107305936073059, - 0.510958904109589, - 0.5111872146118721, - 0.5114155251141552, - 0.5116438356164383, - 0.5118721461187214, - 0.5121004566210046, - 0.5123287671232877, - 0.5125570776255708, - 0.5127853881278539, - 0.513013698630137, - 0.5132420091324201, - 0.5134703196347032, - 0.5136986301369864, - 0.5139269406392695, - 0.5141552511415526, - 0.5143835616438357, - 0.5146118721461187, - 0.5148401826484018, - 0.5150684931506849, - 0.515296803652968, - 0.5155251141552512, - 0.5157534246575343, - 0.5159817351598174, - 0.5162100456621004, - 0.5164383561643835, - 0.5166666666666666, - 0.5168949771689497, - 0.5171232876712328, - 0.517351598173516, - 0.5175799086757991, - 0.5178082191780822, - 0.5180365296803653, - 0.5182648401826484, - 0.5184931506849315, - 0.5187214611872146, - 0.5189497716894977, - 0.5191780821917809, - 0.519406392694064, - 0.5196347031963471, - 0.5198630136986302, - 0.5200913242009133, - 0.5203196347031964, - 0.5205479452054795, - 0.5207762557077625, - 0.5210045662100456, - 0.5212328767123288, - 0.5214611872146119, - 0.521689497716895, - 0.5219178082191781, - 0.5221461187214611, - 0.5223744292237442, - 0.5226027397260273, - 0.5228310502283104, - 0.5230593607305936, - 0.5232876712328767, - 0.5235159817351598, - 0.5237442922374429, - 0.523972602739726, - 0.5242009132420091, - 0.5244292237442922, - 0.5246575342465754, - 0.5248858447488585, - 0.5251141552511416, - 0.5253424657534247, - 0.5255707762557078, - 0.5257990867579909, - 0.526027397260274, - 0.5262557077625571, - 0.5264840182648403, - 0.5267123287671233, - 0.5269406392694064, - 0.5271689497716895, - 0.5273972602739726, - 0.5276255707762557, - 0.5278538812785388, - 0.5280821917808219, - 0.5283105022831049, - 0.5285388127853881, - 0.5287671232876712, - 0.5289954337899543, - 0.5292237442922374, - 0.5294520547945205, - 0.5296803652968036, - 0.5299086757990867, - 0.5301369863013699, - 0.530365296803653, - 0.5305936073059361, - 0.5308219178082192, - 0.5310502283105023, - 0.5312785388127854, - 0.5315068493150685, - 0.5317351598173516, - 0.5319634703196348, - 0.5321917808219179, - 0.532420091324201, - 0.5326484018264841, - 0.5328767123287671, - 0.5331050228310502, - 0.5333333333333333, - 0.5335616438356164, - 0.5337899543378996, - 0.5340182648401827, - 0.5342465753424658, - 0.5344748858447488, - 0.5347031963470319, - 0.534931506849315, - 0.5351598173515981, - 0.5353881278538812, - 0.5356164383561643, - 0.5358447488584475, - 0.5360730593607306, - 0.5363013698630137, - 0.5365296803652968, - 0.5367579908675799, - 0.536986301369863, - 0.5372146118721461, - 0.5374429223744293, - 0.5376712328767124, - 0.5378995433789955, - 0.5381278538812786, - 0.5383561643835617, - 0.5385844748858448, - 0.5388127853881279, - 0.5390410958904109, - 0.539269406392694, - 0.5394977168949772, - 0.5397260273972603, - 0.5399543378995434, - 0.5401826484018265, - 0.5404109589041095, - 0.5406392694063926, - 0.5408675799086757, - 0.5410958904109588, - 0.541324200913242, - 0.5415525114155251, - 0.5417808219178082, - 0.5420091324200913, - 0.5422374429223744, - 0.5424657534246575, - 0.5426940639269406, - 0.5429223744292238, - 0.5431506849315069, - 0.54337899543379, - 0.5436073059360731, - 0.5438356164383562, - 0.5440639269406393, - 0.5442922374429224, - 0.5445205479452055, - 0.5447488584474887, - 0.5449771689497717, - 0.5452054794520548, - 0.5454337899543379, - 0.545662100456621, - 0.5458904109589041, - 0.5461187214611872, - 0.5463470319634703, - 0.5465753424657533, - 0.5468036529680365, - 0.5470319634703196, - 0.5472602739726027, - 0.5474885844748858, - 0.5477168949771689, - 0.547945205479452, - 0.5481735159817351, - 0.5484018264840183, - 0.5486301369863014, - 0.5488584474885845, - 0.5490867579908676, - 0.5493150684931507, - 0.5495433789954338, - 0.5497716894977169, - 0.55, - 0.5502283105022832, - 0.5504566210045663, - 0.5506849315068494, - 0.5509132420091325, - 0.5511415525114155, - 0.5513698630136986, - 0.5515981735159817, - 0.5518264840182648, - 0.552054794520548, - 0.5522831050228311, - 0.5525114155251142, - 0.5527397260273972, - 0.5529680365296803, - 0.5531963470319634, - 0.5534246575342465, - 0.5536529680365296, - 0.5538812785388127, - 0.5541095890410959, - 0.554337899543379, - 0.5545662100456621, - 0.5547945205479452, - 0.5550228310502283, - 0.5552511415525114, - 0.5554794520547945, - 0.5557077625570777, - 0.5559360730593608, - 0.5561643835616439, - 0.556392694063927, - 0.5566210045662101, - 0.5568493150684932, - 0.5570776255707763, - 0.5573059360730593, - 0.5575342465753425, - 0.5577625570776256, - 0.5579908675799087, - 0.5582191780821918, - 0.5584474885844749, - 0.558675799086758, - 0.558904109589041, - 0.5591324200913241, - 0.5593607305936072, - 0.5595890410958904, - 0.5598173515981735, - 0.5600456621004566, - 0.5602739726027397, - 0.5605022831050228, - 0.5607305936073059, - 0.560958904109589, - 0.5611872146118722, - 0.5614155251141553, - 0.5616438356164384, - 0.5618721461187215, - 0.5621004566210046, - 0.5623287671232877, - 0.5625570776255708, - 0.562785388127854, - 0.5630136986301371, - 0.5632420091324202, - 0.5634703196347032, - 0.5636986301369863, - 0.5639269406392694, - 0.5641552511415525, - 0.5643835616438356, - 0.5646118721461187, - 0.5648401826484017, - 0.5650684931506849, - 0.565296803652968, - 0.5655251141552511, - 0.5657534246575342, - 0.5659817351598173, - 0.5662100456621004, - 0.5664383561643835, - 0.5666666666666667, - 0.5668949771689498, - 0.5671232876712329, - 0.567351598173516, - 0.5675799086757991, - 0.5678082191780822, - 0.5680365296803653, - 0.5682648401826484, - 0.5684931506849316, - 0.5687214611872147, - 0.5689497716894978, - 0.5691780821917809, - 0.5694063926940639, - 0.569634703196347, - 0.5698630136986301, - 0.5700913242009132, - 0.5703196347031964, - 0.5705479452054795, - 0.5707762557077626, - 0.5710045662100456, - 0.5712328767123287, - 0.5714611872146118, - 0.5716894977168949, - 0.571917808219178, - 0.5721461187214611, - 0.5723744292237443, - 0.5726027397260274, - 0.5728310502283105, - 0.5730593607305936, - 0.5732876712328767, - 0.5735159817351598, - 0.5737442922374429, - 0.5739726027397261, - 0.5742009132420092, - 0.5744292237442923, - 0.5746575342465754, - 0.5748858447488585, - 0.5751141552511416, - 0.5753424657534247, - 0.5755707762557077, - 0.5757990867579909, - 0.576027397260274, - 0.5762557077625571, - 0.5764840182648402, - 0.5767123287671233, - 0.5769406392694064, - 0.5771689497716894, - 0.5773972602739725, - 0.5776255707762556, - 0.5778538812785388, - 0.5780821917808219, - 0.578310502283105, - 0.5785388127853881, - 0.5787671232876712, - 0.5789954337899543, - 0.5792237442922374, - 0.5794520547945206, - 0.5796803652968037, - 0.5799086757990868, - 0.5801369863013699, - 0.580365296803653, - 0.5805936073059361, - 0.5808219178082192, - 0.5810502283105023, - 0.5812785388127855, - 0.5815068493150686, - 0.5817351598173516, - 0.5819634703196347, - 0.5821917808219178, - 0.5824200913242009, - 0.582648401826484, - 0.5828767123287671, - 0.5831050228310501, - 0.5833333333333333, - 0.5835616438356164, - 0.5837899543378995, - 0.5840182648401826, - 0.5842465753424657, - 0.5844748858447488, - 0.5847031963470319, - 0.584931506849315, - 0.5851598173515982, - 0.5853881278538813, - 0.5856164383561644, - 0.5858447488584475, - 0.5860730593607306, - 0.5863013698630137, - 0.5865296803652968, - 0.58675799086758, - 0.5869863013698631, - 0.5872146118721462, - 0.5874429223744293, - 0.5876712328767123, - 0.5878995433789954, - 0.5881278538812785, - 0.5883561643835616, - 0.5885844748858448, - 0.5888127853881279, - 0.589041095890411, - 0.589269406392694, - 0.5894977168949771, - 0.5897260273972602, - 0.5899543378995433, - 0.5901826484018264, - 0.5904109589041096, - 0.5906392694063927, - 0.5908675799086758, - 0.5910958904109589, - 0.591324200913242, - 0.5915525114155251, - 0.5917808219178082, - 0.5920091324200913, - 0.5922374429223745, - 0.5924657534246576, - 0.5926940639269407, - 0.5929223744292238, - 0.5931506849315069, - 0.59337899543379, - 0.5936073059360731, - 0.5938356164383561, - 0.5940639269406393, - 0.5942922374429224, - 0.5945205479452055, - 0.5947488584474886, - 0.5949771689497717, - 0.5952054794520548, - 0.5954337899543378, - 0.5956621004566209, - 0.595890410958904, - 0.5961187214611872, - 0.5963470319634703, - 0.5965753424657534, - 0.5968036529680365, - 0.5970319634703196, - 0.5972602739726027, - 0.5974885844748858, - 0.597716894977169, - 0.5979452054794521, - 0.5981735159817352, - 0.5984018264840183, - 0.5986301369863014, - 0.5988584474885845, - 0.5990867579908676, - 0.5993150684931507, - 0.5995433789954339, - 0.599771689497717, - 0.6, - 0.6002283105022831, - 0.6004566210045662, - 0.6006849315068493, - 0.6009132420091324, - 0.6011415525114155, - 0.6013698630136987, - 0.6015981735159817, - 0.6018264840182648, - 0.6020547945205479, - 0.602283105022831, - 0.6025114155251141, - 0.6027397260273972, - 0.6029680365296803, - 0.6031963470319635, - 0.6034246575342466, - 0.6036529680365297, - 0.6038812785388128, - 0.6041095890410959, - 0.604337899543379, - 0.6045662100456621, - 0.6047945205479452, - 0.6050228310502284, - 0.6052511415525115, - 0.6054794520547946, - 0.6057077625570777, - 0.6059360730593608, - 0.6061643835616438, - 0.6063926940639269, - 0.60662100456621, - 0.6068493150684932, - 0.6070776255707763, - 0.6073059360730594, - 0.6075342465753424, - 0.6077625570776255, - 0.6079908675799086, - 0.6082191780821917, - 0.6084474885844748, - 0.608675799086758, - 0.6089041095890411, - 0.6091324200913242, - 0.6093607305936073, - 0.6095890410958904, - 0.6098173515981735, - 0.6100456621004566, - 0.6102739726027397, - 0.6105022831050229, - 0.610730593607306, - 0.6109589041095891, - 0.6111872146118722, - 0.6114155251141553, - 0.6116438356164384, - 0.6118721461187215, - 0.6121004566210045, - 0.6123287671232877, - 0.6125570776255708, - 0.6127853881278539, - 0.613013698630137, - 0.6132420091324201, - 0.6134703196347032, - 0.6136986301369862, - 0.6139269406392693, - 0.6141552511415524, - 0.6143835616438356, - 0.6146118721461187, - 0.6148401826484018, - 0.6150684931506849, - 0.615296803652968, - 0.6155251141552511, - 0.6157534246575342, - 0.6159817351598174, - 0.6162100456621005, - 0.6164383561643836, - 0.6166666666666667, - 0.6168949771689498, - 0.6171232876712329, - 0.617351598173516, - 0.6175799086757991, - 0.6178082191780823, - 0.6180365296803654, - 0.6182648401826484, - 0.6184931506849315, - 0.6187214611872146, - 0.6189497716894977, - 0.6191780821917808, - 0.619406392694064, - 0.6196347031963471, - 0.6198630136986301, - 0.6200913242009132, - 0.6203196347031963, - 0.6205479452054794, - 0.6207762557077625, - 0.6210045662100456, - 0.6212328767123287, - 0.6214611872146119, - 0.621689497716895, - 0.6219178082191781, - 0.6221461187214612, - 0.6223744292237443, - 0.6226027397260274, - 0.6228310502283105, - 0.6230593607305936, - 0.6232876712328768, - 0.6235159817351599, - 0.623744292237443, - 0.6239726027397261, - 0.6242009132420092, - 0.6244292237442922, - 0.6246575342465753, - 0.6248858447488584, - 0.6251141552511416, - 0.6253424657534247, - 0.6255707762557078, - 0.6257990867579908, - 0.6260273972602739, - 0.626255707762557, - 0.6264840182648401, - 0.6267123287671232, - 0.6269406392694064, - 0.6271689497716895, - 0.6273972602739726, - 0.6276255707762557, - 0.6278538812785388, - 0.6280821917808219, - 0.628310502283105, - 0.6285388127853881, - 0.6287671232876713, - 0.6289954337899544, - 0.6292237442922375, - 0.6294520547945206, - 0.6296803652968037, - 0.6299086757990868, - 0.6301369863013699, - 0.6303652968036529, - 0.630593607305936, - 0.6308219178082192, - 0.6310502283105023, - 0.6312785388127854, - 0.6315068493150685, - 0.6317351598173516, - 0.6319634703196346, - 0.6321917808219177, - 0.6324200913242009, - 0.632648401826484, - 0.6328767123287671, - 0.6331050228310502, - 0.6333333333333333, - 0.6335616438356164, - 0.6337899543378995, - 0.6340182648401826, - 0.6342465753424658, - 0.6344748858447489, - 0.634703196347032, - 0.6349315068493151, - 0.6351598173515982, - 0.6353881278538813, - 0.6356164383561644, - 0.6358447488584476, - 0.6360730593607307, - 0.6363013698630138, - 0.6365296803652968, - 0.6367579908675799, - 0.636986301369863, - 0.6372146118721461, - 0.6374429223744292, - 0.6376712328767123, - 0.6378995433789955, - 0.6381278538812785, - 0.6383561643835616, - 0.6385844748858447, - 0.6388127853881278, - 0.6390410958904109, - 0.639269406392694, - 0.6394977168949771, - 0.6397260273972603, - 0.6399543378995434, - 0.6401826484018265, - 0.6404109589041096, - 0.6406392694063927, - 0.6408675799086758, - 0.6410958904109589, - 0.641324200913242, - 0.6415525114155252, - 0.6417808219178083, - 0.6420091324200914, - 0.6422374429223745, - 0.6424657534246576, - 0.6426940639269406, - 0.6429223744292237, - 0.6431506849315068, - 0.64337899543379, - 0.6436073059360731, - 0.6438356164383562, - 0.6440639269406392, - 0.6442922374429223, - 0.6445205479452054, - 0.6447488584474885, - 0.6449771689497716, - 0.6452054794520548, - 0.6454337899543379, - 0.645662100456621, - 0.6458904109589041, - 0.6461187214611872, - 0.6463470319634703, - 0.6465753424657534, - 0.6468036529680365, - 0.6470319634703197, - 0.6472602739726028, - 0.6474885844748859, - 0.647716894977169, - 0.6479452054794521, - 0.6481735159817352, - 0.6484018264840183, - 0.6486301369863013, - 0.6488584474885845, - 0.6490867579908676, - 0.6493150684931507, - 0.6495433789954338, - 0.6497716894977169, - 0.65, - 0.650228310502283, - 0.6504566210045661, - 0.6506849315068493, - 0.6509132420091324, - 0.6511415525114155, - 0.6513698630136986, - 0.6515981735159817, - 0.6518264840182648, - 0.6520547945205479, - 0.652283105022831, - 0.6525114155251142, - 0.6527397260273973, - 0.6529680365296804, - 0.6531963470319635, - 0.6534246575342466, - 0.6536529680365297, - 0.6538812785388128, - 0.654109589041096, - 0.6543378995433791, - 0.6545662100456622, - 0.6547945205479452, - 0.6550228310502283, - 0.6552511415525114, - 0.6554794520547945, - 0.6557077625570776, - 0.6559360730593607, - 0.6561643835616439, - 0.6563926940639269, - 0.65662100456621, - 0.6568493150684931, - 0.6570776255707762, - 0.6573059360730593, - 0.6575342465753424, - 0.6577625570776255, - 0.6579908675799087, - 0.6582191780821918, - 0.6584474885844749, - 0.658675799086758, - 0.6589041095890411, - 0.6591324200913242, - 0.6593607305936073, - 0.6595890410958904, - 0.6598173515981736, - 0.6600456621004567, - 0.6602739726027398, - 0.6605022831050229, - 0.660730593607306, - 0.660958904109589, - 0.6611872146118721, - 0.6614155251141552, - 0.6616438356164384, - 0.6618721461187215, - 0.6621004566210046, - 0.6623287671232877, - 0.6625570776255707, - 0.6627853881278538, - 0.6630136986301369, - 0.66324200913242, - 0.6634703196347032, - 0.6636986301369863, - 0.6639269406392694, - 0.6641552511415525, - 0.6643835616438356, - 0.6646118721461187, - 0.6648401826484018, - 0.665068493150685, - 0.6652968036529681, - 0.6655251141552512, - 0.6657534246575343, - 0.6659817351598174, - 0.6662100456621005, - 0.6664383561643836, - 0.6666666666666667, - 0.6668949771689499, - 0.6671232876712329, - 0.667351598173516, - 0.6675799086757991, - 0.6678082191780822, - 0.6680365296803653, - 0.6682648401826484, - 0.6684931506849314, - 0.6687214611872145, - 0.6689497716894977, - 0.6691780821917808, - 0.6694063926940639, - 0.669634703196347, - 0.6698630136986301, - 0.6700913242009132, - 0.6703196347031963, - 0.6705479452054794, - 0.6707762557077626, - 0.6710045662100457, - 0.6712328767123288, - 0.6714611872146119, - 0.671689497716895, - 0.6719178082191781, - 0.6721461187214612, - 0.6723744292237444, - 0.6726027397260275, - 0.6728310502283106, - 0.6730593607305936, - 0.6732876712328767, - 0.6735159817351598, - 0.6737442922374429, - 0.673972602739726, - 0.6742009132420091, - 0.6744292237442923, - 0.6746575342465753, - 0.6748858447488584, - 0.6751141552511415, - 0.6753424657534246, - 0.6755707762557077, - 0.6757990867579908, - 0.6760273972602739, - 0.6762557077625571, - 0.6764840182648402, - 0.6767123287671233, - 0.6769406392694064, - 0.6771689497716895, - 0.6773972602739726, - 0.6776255707762557, - 0.6778538812785389, - 0.678082191780822, - 0.6783105022831051, - 0.6785388127853882, - 0.6787671232876713, - 0.6789954337899544, - 0.6792237442922374, - 0.6794520547945205, - 0.6796803652968036, - 0.6799086757990868, - 0.6801369863013699, - 0.680365296803653, - 0.6805936073059361, - 0.6808219178082191, - 0.6810502283105022, - 0.6812785388127853, - 0.6815068493150684, - 0.6817351598173516, - 0.6819634703196347, - 0.6821917808219178, - 0.6824200913242009, - 0.682648401826484, - 0.6828767123287671, - 0.6831050228310502, - 0.6833333333333333, - 0.6835616438356165, - 0.6837899543378996, - 0.6840182648401827, - 0.6842465753424658, - 0.6844748858447489, - 0.684703196347032, - 0.6849315068493151, - 0.6851598173515983, - 0.6853881278538813, - 0.6856164383561644, - 0.6858447488584475, - 0.6860730593607306, - 0.6863013698630137, - 0.6865296803652968, - 0.6867579908675798, - 0.6869863013698629, - 0.687214611872146, - 0.6874429223744292, - 0.6876712328767123, - 0.6878995433789954, - 0.6881278538812785, - 0.6883561643835616, - 0.6885844748858447, - 0.6888127853881278, - 0.689041095890411, - 0.6892694063926941, - 0.6894977168949772, - 0.6897260273972603, - 0.6899543378995434, - 0.6901826484018265, - 0.6904109589041096, - 0.6906392694063928, - 0.6908675799086759, - 0.691095890410959, - 0.691324200913242, - 0.6915525114155251, - 0.6917808219178082, - 0.6920091324200913, - 0.6922374429223744, - 0.6924657534246575, - 0.6926940639269407, - 0.6929223744292237, - 0.6931506849315068, - 0.6933789954337899, - 0.693607305936073, - 0.6938356164383561, - 0.6940639269406392, - 0.6942922374429223, - 0.6945205479452055, - 0.6947488584474886, - 0.6949771689497717, - 0.6952054794520548, - 0.6954337899543379, - 0.695662100456621, - 0.6958904109589041, - 0.6961187214611873, - 0.6963470319634704, - 0.6965753424657535, - 0.6968036529680366, - 0.6970319634703197, - 0.6972602739726028, - 0.6974885844748858, - 0.6977168949771689, - 0.697945205479452, - 0.6981735159817352, - 0.6984018264840183, - 0.6986301369863014, - 0.6988584474885845, - 0.6990867579908675, - 0.6993150684931506, - 0.6995433789954337, - 0.6997716894977168, - 0.7, - 0.7002283105022831, - 0.7004566210045662, - 0.7006849315068493, - 0.7009132420091324, - 0.7011415525114155, - 0.7013698630136986, - 0.7015981735159817, - 0.7018264840182649, - 0.702054794520548, - 0.7022831050228311, - 0.7025114155251142, - 0.7027397260273973, - 0.7029680365296804, - 0.7031963470319635, - 0.7034246575342467, - 0.7036529680365297, - 0.7038812785388128, - 0.7041095890410959, - 0.704337899543379, - 0.7045662100456621, - 0.7047945205479452, - 0.7050228310502283, - 0.7052511415525113, - 0.7054794520547945, - 0.7057077625570776, - 0.7059360730593607, - 0.7061643835616438, - 0.7063926940639269, - 0.70662100456621, - 0.7068493150684931, - 0.7070776255707762, - 0.7073059360730594, - 0.7075342465753425, - 0.7077625570776256, - 0.7079908675799087, - 0.7082191780821918, - 0.7084474885844749, - 0.708675799086758, - 0.7089041095890412, - 0.7091324200913243, - 0.7093607305936074, - 0.7095890410958905, - 0.7098173515981735, - 0.7100456621004566, - 0.7102739726027397, - 0.7105022831050228, - 0.710730593607306, - 0.7109589041095891, - 0.7111872146118721, - 0.7114155251141552, - 0.7116438356164383, - 0.7118721461187214, - 0.7121004566210045, - 0.7123287671232876, - 0.7125570776255707, - 0.7127853881278539, - 0.713013698630137, - 0.7132420091324201, - 0.7134703196347032, - 0.7136986301369863, - 0.7139269406392694, - 0.7141552511415525, - 0.7143835616438357, - 0.7146118721461188, - 0.7148401826484019, - 0.715068493150685, - 0.7152968036529681, - 0.7155251141552512, - 0.7157534246575342, - 0.7159817351598173, - 0.7162100456621004, - 0.7164383561643836, - 0.7166666666666667, - 0.7168949771689498, - 0.7171232876712329, - 0.7173515981735159, - 0.717579908675799, - 0.7178082191780821, - 0.7180365296803652, - 0.7182648401826484, - 0.7184931506849315, - 0.7187214611872146, - 0.7189497716894977, - 0.7191780821917808, - 0.7194063926940639, - 0.719634703196347, - 0.7198630136986301, - 0.7200913242009133, - 0.7203196347031964, - 0.7205479452054795, - 0.7207762557077626, - 0.7210045662100457, - 0.7212328767123288, - 0.7214611872146119, - 0.7216894977168951, - 0.7219178082191781, - 0.7221461187214612, - 0.7223744292237443, - 0.7226027397260274, - 0.7228310502283105, - 0.7230593607305936, - 0.7232876712328767, - 0.7235159817351597, - 0.7237442922374429, - 0.723972602739726, - 0.7242009132420091, - 0.7244292237442922, - 0.7246575342465753, - 0.7248858447488584, - 0.7251141552511415, - 0.7253424657534246, - 0.7255707762557078, - 0.7257990867579909, - 0.726027397260274, - 0.7262557077625571, - 0.7264840182648402, - 0.7267123287671233, - 0.7269406392694064, - 0.7271689497716896, - 0.7273972602739727, - 0.7276255707762558, - 0.7278538812785389, - 0.7280821917808219, - 0.728310502283105, - 0.7285388127853881, - 0.7287671232876712, - 0.7289954337899544, - 0.7292237442922375, - 0.7294520547945205, - 0.7296803652968036, - 0.7299086757990867, - 0.7301369863013698, - 0.7303652968036529, - 0.730593607305936, - 0.7308219178082191, - 0.7310502283105023, - 0.7312785388127854, - 0.7315068493150685, - 0.7317351598173516, - 0.7319634703196347, - 0.7321917808219178, - 0.7324200913242009, - 0.732648401826484, - 0.7328767123287672, - 0.7331050228310503, - 0.7333333333333334, - 0.7335616438356165, - 0.7337899543378996, - 0.7340182648401826, - 0.7342465753424657, - 0.7344748858447488, - 0.734703196347032, - 0.7349315068493151, - 0.7351598173515982, - 0.7353881278538813, - 0.7356164383561643, - 0.7358447488584474, - 0.7360730593607305, - 0.7363013698630136, - 0.7365296803652968, - 0.7367579908675799, - 0.736986301369863, - 0.7372146118721461, - 0.7374429223744292, - 0.7376712328767123, - 0.7378995433789954, - 0.7381278538812786, - 0.7383561643835617, - 0.7385844748858448, - 0.7388127853881279, - 0.739041095890411, - 0.7392694063926941, - 0.7394977168949772, - 0.7397260273972603, - 0.7399543378995435, - 0.7401826484018265, - 0.7404109589041096, - 0.7406392694063927, - 0.7408675799086758, - 0.7410958904109589, - 0.741324200913242, - 0.7415525114155251, - 0.7417808219178081, - 0.7420091324200913, - 0.7422374429223744, - 0.7424657534246575, - 0.7426940639269406, - 0.7429223744292237, - 0.7431506849315068, - 0.7433789954337899, - 0.743607305936073, - 0.7438356164383562, - 0.7440639269406393, - 0.7442922374429224, - 0.7445205479452055, - 0.7447488584474886, - 0.7449771689497717, - 0.7452054794520548, - 0.745433789954338, - 0.7456621004566211, - 0.7458904109589042, - 0.7461187214611873, - 0.7463470319634703, - 0.7465753424657534, - 0.7468036529680365, - 0.7470319634703196, - 0.7472602739726028, - 0.7474885844748859, - 0.7477168949771689, - 0.747945205479452, - 0.7481735159817351, - 0.7484018264840182, - 0.7486301369863013, - 0.7488584474885844, - 0.7490867579908675, - 0.7493150684931507, - 0.7495433789954338, - 0.7497716894977169 + 0.3593, + 0.8387, + 0.5723, + 0.3326, + 0.8331, + 0.6386, + 0.0457, + 0.7898, + 0.9063, + 0.2172, + 0.3835, + 0.9701, + 0.1676, + 0.6894, + 0.9942, + 0.3524, + 0.9666, + 0.5075, + 0.9572, + 0.2736, + 0.408, + 0.171, + 0.1569, + 0.5389, + 0.366, + 0.5924, + 0.6273, + 0.0727, + 0.0657, + 0.9289, + 0.724, + 0.6451, + 0.6038, + 0.9373, + 0.6536, + 0.9177, + 0.2379, + 0.0109, + 0.0938, + 0.7793, + 0.4766, + 0.4175, + 0.6377, + 0.8457, + 0.8386, + 0.5601, + 0.6271, + 0.8664, + 0.3133, + 0.3096, + 0.316, + 0.1582, + 0.6249, + 0.8729, + 0.2733, + 0.7728, + 0.9266, + 0.7023, + 0.2725, + 0.3411, + 0.0239, + 0.4182, + 0.5692, + 0.2283, + 0.7031, + 0.9459, + 0.976, + 0.5563, + 0.8625, + 0.835, + 0.4834, + 0.2142, + 0.8106, + 0.2571, + 0.3004, + 0.5168, + 0.1831, + 0.2936, + 0.9097, + 0.3391, + 0.076, + 0.3398, + 0.1651, + 0.7272, + 0.8272, + 0.2, + 0.7122, + 0.4613, + 0.7526, + 0.7938, + 0.5191, + 0.3956, + 0.1579, + 0.0581, + 0.2594, + 0.7222, + 0.3545, + 0.0298, + 0.7717, + 0.0682, + 0.6946, + 0.994, + 0.5731, + 0.7245, + 0.7809, + 0.7244, + 0.6895, + 0.1797, + 0.4914, + 0.2452, + 0.2293, + 0.0772, + 0.0661, + 0.4487, + 0.9937, + 0.9703, + 0.7981, + 0.0053, + 0.3512, + 0.9823, + 0.2175, + 0.1882, + 0.1666, + 0.8001, + 0.1471, + 0.0138, + 0.0712, + 0.0997, + 0.1149, + 0.3622, + 0.7124, + 0.3207, + 0.5799, + 0.167, + 0.7646, + 0.6382, + 0.8594, + 0.0133, + 0.4179, + 0.6905, + 0.7311, + 0.1764, + 0.2075, + 0.7678, + 0.3695, + 0.1568, + 0.8086, + 0.6696, + 0.4186, + 0.6959, + 0.4165, + 0.1693, + 0.1076, + 0.4872, + 0.0765, + 0.5691, + 0.3413, + 0.1947, + 0.1318, + 0.2404, + 0.6293, + 0.7761, + 0.4991, + 0.3361, + 0.2343, + 0.4718, + 0.4243, + 0.554, + 0.5674, + 0.9077, + 0.5177, + 0.3334, + 0.6616, + 0.8959, + 0.9617, + 0.3168, + 0.323, + 0.5352, + 0.5602, + 0.8759, + 0.937, + 0.9797, + 0.0636, + 0.3971, + 0.9351, + 0.701, + 0.8786, + 0.818, + 0.8399, + 0.3312, + 0.3146, + 0.7899, + 0.7546, + 0.6198, + 0.8263, + 0.2809, + 0.2635, + 0.9483, + 0.9021, + 0.6313, + 0.4143, + 0.5788, + 0.6684, + 0.4742, + 0.4672, + 0.4288, + 0.3253, + 0.6924, + 0.2046, + 0.8261, + 0.4291, + 0.243, + 0.6962, + 0.2074, + 0.0633, + 0.4896, + 0.7032, + 0.0418, + 0.1811, + 0.3637, + 0.5992, + 0.4313, + 0.8883, + 0.4656, + 0.6607, + 0.741, + 0.6093, + 0.3728, + 0.1958, + 0.8805, + 0.8979, + 0.898, + 0.3786, + 0.4061, + 0.0426, + 0.8879, + 0.261, + 0.5197, + 0.4511, + 0.1383, + 0.3056, + 0.8661, + 0.0241, + 0.6964, + 0.4138, + 0.3729, + 0.0815, + 0.9202, + 0.6528, + 0.2208, + 0.4036, + 0.2002, + 0.2299, + 0.4544, + 0.5687, + 0.9811, + 0.1737, + 0.6307, + 0.1573, + 0.1949, + 0.2179, + 0.2135, + 0.4067, + 0.3688, + 0.2102, + 0.5779, + 0.0843, + 0.4029, + 0.83, + 0.0803, + 0.7692, + 0.6711, + 0.6156, + 0.9751, + 0.9356, + 0.2042, + 0.8505, + 0.4068, + 0.2778, + 0.2414, + 0.5926, + 0.0942, + 0.5011, + 0.5288, + 0.8101, + 0.6699, + 0.0678, + 0.8496, + 0.4969, + 0.2662, + 0.0512, + 0.3102, + 0.1635, + 0.7578, + 0.6322, + 0.5211, + 0.8476, + 0.951, + 0.672, + 0.1949, + 0.8312, + 0.0069, + 0.5159, + 0.017, + 0.7641, + 0.2124, + 0.3747, + 0.7528, + 0.3873, + 0.6258, + 0.0498, + 0.4508, + 0.5161, + 0.5794, + 0.6303, + 0.2019, + 0.4146, + 0.744, + 0.9367, + 0.7514, + 0.3354, + 0.9721, + 0.5558, + 0.5511, + 0.848, + 0.4311, + 0.7653, + 0.1422, + 0.1648, + 0.5284, + 0.7849, + 0.4265, + 0.7597, + 0.7822, + 0.1932, + 0.7568, + 0.1558, + 0.1359, + 0.7181, + 0.1391, + 0.6597, + 0.9465, + 0.1698, + 0.0688, + 0.0619, + 0.1615, + 0.9072, + 0.0782, + 0.4566, + 0.3998, + 0.8973, + 0.6574, + 0.0938, + 0.8352, + 0.8193, + 0.2465, + 0.2408, + 0.2268, + 0.7981, + 0.4486, + 0.3856, + 0.3324, + 0.6359, + 0.5143, + 0.4921, + 0.5798, + 0.9058, + 0.1711, + 0.9112, + 0.1609, + 0.6617, + 0.6904, + 0.5348, + 0.7884, + 0.7018, + 0.8745, + 0.5169, + 0.06, + 0.2558, + 0.1852, + 0.4765, + 0.3981, + 0.9393, + 0.7737, + 0.5031, + 0.1159, + 0.3243, + 0.8576, + 0.1532, + 0.8887, + 0.4998, + 0.8798, + 0.5668, + 0.5355, + 0.227, + 0.7281, + 0.4138, + 0.3471, + 0.8768, + 0.4861, + 0.79, + 0.6625, + 0.6699, + 0.1169, + 0.0822, + 0.425, + 0.9408, + 0.7509, + 0.2447, + 0.9287, + 0.978, + 0.5624, + 0.2249, + 0.6882, + 0.5786, + 0.1674, + 0.8135, + 0.7236, + 0.3613, + 0.9172, + 0.4471, + 0.4288, + 0.0674, + 0.6668, + 0.614, + 0.644, + 0.3617, + 0.8398, + 0.6934, + 0.6172, + 0.7734, + 0.3035, + 0.7583, + 0.5308, + 0.0552, + 0.1001, + 0.3939, + 0.5402, + 0.4862, + 0.0649, + 0.0457, + 0.1836, + 0.6683, + 0.0496, + 0.6878, + 0.5618, + 0.509, + 0.7227, + 0.0614, + 0.0271, + 0.9838, + 0.1537, + 0.1671, + 0.4372, + 0.4313, + 0.3156, + 0.5112, + 0.4665, + 0.0215, + 0.1059, + 0.2841, + 0.6298, + 0.152, + 0.4955, + 0.846, + 0.5702, + 0.2882, + 0.7651, + 0.8827, + 0.0185, + 0.6384, + 0.4023, + 0.0217, + 0.3894, + 0.4734, + 0.9982, + 0.8305, + 0.4326, + 0.7864, + 0.7819, + 0.251, + 0.2588, + 0.4918, + 0.5241, + 0.876, + 0.4392, + 0.7328, + 0.513, + 0.5489, + 0.9035, + 0.5781, + 0.9981, + 0.4758, + 0.4245, + 0.3022, + 0.4052, + 0.2097, + 0.1587, + 0.8621, + 0.4539, + 0.4703, + 0.0092, + 0.4436, + 0.1253, + 0.4618, + 0.9335, + 0.4363, + 0.6726, + 0.5717, + 0.1621, + 0.8575, + 0.1685, + 0.2775, + 0.2493, + 0.7752, + 0.7156, + 0.7832, + 0.7138, + 0.2559, + 0.8934, + 0.0954, + 0.7056, + 0.4412, + 0.5087, + 0.2112, + 0.4448, + 0.4711, + 0.0222, + 0.7231, + 0.7959, + 0.9845, + 0.8482, + 0.7477, + 0.197, + 0.0582, + 0.5529, + 0.4707, + 0.6431, + 0.4371, + 0.5719, + 0.3581, + 0.817, + 0.7807, + 0.8509, + 0.0328, + 0.3797, + 0.193, + 0.5208, + 0.1248, + 0.7488, + 0.7178, + 0.3403, + 0.6084, + 0.6361, + 0.8629, + 0.2033, + 0.8217, + 0.1716, + 0.1423, + 0.2649, + 0.2064, + 0.6728, + 0.3681, + 0.1694, + 0.7337, + 0.2156, + 0.8915, + 0.481, + 0.4595, + 0.2414, + 0.1311, + 0.5061, + 0.0322, + 0.3703, + 0.9835, + 0.2732, + 0.2318, + 0.0685, + 0.9272, + 0.1467, + 0.0893, + 0.3885, + 0.6239, + 0.1206, + 0.247, + 0.1542, + 0.0494, + 0.4872, + 0.4894, + 0.5673, + 0.975, + 0.8252, + 0.277, + 0.1913, + 0.0689, + 0.8881, + 0.4715, + 0.6277, + 0.8913, + 0.8945, + 0.9568, + 0.4132, + 0.3748, + 0.0732, + 0.4819, + 0.9791, + 0.116, + 0.2034, + 0.6259, + 0.1452, + 0.2364, + 0.692, + 0.6725, + 0.6654, + 0.0575, + 0.3125, + 0.237, + 0.8517, + 0.2522, + 0.3476, + 0.3967, + 0.3651, + 0.4703, + 0.4724, + 0.8889, + 0.1149, + 0.391, + 0.0156, + 0.3535, + 0.1245, + 0.7491, + 0.6323, + 0.9374, + 0.2483, + 0.4004, + 0.4882, + 0.0045, + 0.1578, + 0.8095, + 0.2519, + 0.5437, + 0.1401, + 0.9754, + 0.8508, + 0.4646, + 0.0163, + 0.5774, + 0.6907, + 0.6861, + 0.5843, + 0.7924, + 0.333, + 0.9364, + 0.047, + 0.5089, + 0.1078, + 0.1201, + 0.87, + 0.8663, + 0.0561, + 0.5758, + 0.017, + 0.7526, + 0.0036, + 0.0325, + 0.3328, + 0.511, + 0.662, + 0.5752, + 0.9932, + 0.1025, + 0.9092, + 0.9542, + 0.5212, + 0.1916, + 0.5507, + 0.4185, + 0.0951, + 0.5877, + 0.2845, + 0.874, + 0.4094, + 0.8632, + 0.5823, + 0.073, + 0.4237, + 0.9638, + 0.3707, + 0.0694, + 0.1734, + 0.7639, + 0.7027, + 0.3633, + 0.3956, + 0.4058, + 0.5664, + 0.1336, + 0.8079, + 0.1084, + 0.8339, + 0.9143, + 0.7309, + 0.042, + 0.2635, + 0.3933, + 0.62, + 0.3179, + 0.6538, + 0.1207, + 0.1235, + 0.6075, + 0.3844, + 0.7959, + 0.6845, + 0.8907, + 0.5031, + 0.9004, + 0.3978, + 0.3705, + 0.3654, + 0.4702, + 0.217, + 0.5456, + 0.2611, + 0.8214, + 0.1339, + 0.2392, + 0.0092, + 0.0142, + 0.2005, + 0.6524, + 0.2639, + 0.0869, + 0.6879, + 0.4123, + 0.3894, + 0.0523, + 0.1761, + 0.4469, + 0.9783, + 0.2722, + 0.7292, + 0.5803, + 0.7635, + 0.6243, + 0.8057, + 0.6301, + 0.709, + 0.839, + 0.9879, + 0.325, + 0.9709, + 0.2961, + 0.0897, + 0.5772, + 0.7742, + 0.4213, + 0.1541, + 0.8751, + 0.7725, + 0.3671, + 0.9252, + 0.3224, + 0.0991, + 0.1967, + 0.1535, + 0.59, + 0.7374, + 0.5658, + 0.5078, + 0.3128, + 0.122, + 0.2485, + 0.5621, + 0.0408, + 0.1753, + 0.2142, + 0.868, + 0.2552, + 0.0784, + 0.5453, + 0.8331, + 0.6734, + 0.7658, + 0.7759, + 0.2093, + 0.0697, + 0.5661, + 0.1237, + 0.6459, + 0.6899, + 0.626, + 0.7647, + 0.1197, + 0.3459, + 0.7984, + 0.1406, + 0.4853, + 0.9921, + 0.1916, + 0.0135, + 0.8668, + 0.7997, + 0.0978, + 0.8662, + 0.2726, + 0.7325, + 0.686, + 0.0976, + 0.7138, + 0.9663, + 0.3917, + 0.0242, + 0.7424, + 0.446, + 0.6465, + 0.4224, + 0.0345, + 0.6342, + 0.103, + 0.3342, + 0.0169, + 0.7932, + 0.0189, + 0.8661, + 0.1512, + 0.2845, + 0.2565, + 0.5782, + 0.5152, + 0.381, + 0.3408, + 0.7481, + 0.6807, + 0.0046, + 0.4679, + 0.3096, + 0.9461, + 0.6607, + 0.6615, + 0.2464, + 0.5735, + 0.6383, + 0.2685, + 0.8675, + 0.6816, + 0.3035, + 0.1424, + 0.4797, + 0.7822, + 0.3061, + 0.8432, + 0.1692, + 0.3766, + 0.7902, + 0.5816, + 0.5869, + 0.0302, + 0.7909, + 0.0463, + 0.1437, + 0.0287, + 0.2703, + 0.2982, + 0.3732, + 0.9853, + 0.8627, + 0.7624, + 0.1773, + 0.0403, + 0.2623, + 0.8064, + 0.0931, + 0.7019, + 0.0511, + 0.8907, + 0.12, + 0.0656, + 0.4124, + 0.5173, + 0.7516, + 0.0362, + 0.4667, + 0.1054, + 0.5755, + 0.2494, + 0.4246, + 0.2674, + 0.8129, + 0.8815, + 0.3993, + 0.8539, + 0.9584, + 0.9041, + 0.5238, + 0.6321, + 0.9311, + 0.0096, + 0.1146, + 0.9827, + 0.268, + 0.3882, + 0.7228, + 0.7975, + 0.0946, + 0.0313, + 0.7436, + 0.5133, + 0.2653, + 0.1407, + 0.4643, + 0.5815, + 0.3617, + 0.7193, + 0.5494, + 0.638, + 0.6125, + 0.0979, + 0.5718, + 0.1735, + 0.3431, + 0.6125, + 0.659, + 0.7417, + 0.1321, + 0.1283, + 0.4314, + 0.9036, + 0.824, + 0.4608, + 0.2055, + 0.1667, + 0.4112, + 0.2647, + 0.5803, + 0.48, + 0.0904, + 0.7962, + 0.8493, + 0.1071, + 0.9889, + 0.5764, + 0.8977, + 0.7722, + 0.41, + 0.6315, + 0.326, + 0.6512, + 0.9742, + 0.1085, + 0.3711, + 0.7119, + 0.0733, + 0.4121, + 0.3006, + 0.5747, + 0.032, + 0.5087, + 0.9827, + 0.4336, + 0.5271, + 0.81, + 0.753, + 0.8484, + 0.4938, + 0.6499, + 0.2647, + 0.0487, + 0.7638, + 0.2737, + 0.0117, + 0.237, + 0.8791, + 0.3699, + 0.3207, + 0.4773, + 0.9962, + 0.7684, + 0.0605, + 0.317, + 0.0768, + 0.0614, + 0.3998, + 0.7369, + 0.7483, + 0.8526, + 0.3527, + 0.6222, + 0.8267, + 0.0558, + 0.8201, + 0.8994, + 0.393, + 0.4505, + 0.369, + 0.4155, + 0.0874, + 0.1475, + 0.4265, + 0.5704, + 0.2458, + 0.2639, + 0.8127, + 0.5269, + 0.2029, + 0.7702, + 0.1061, + 0.01, + 0.1797, + 0.0678, + 0.9489, + 0.1243, + 0.0986, + 0.7525, + 0.8523, + 0.6232, + 0.1061, + 0.8446, + 0.7877, + 0.5718, + 0.4835, + 0.721, + 0.9134, + 0.3479, + 0.3024, + 0.2069, + 0.9716, + 0.7157, + 0.1655, + 0.674, + 0.986, + 0.2516, + 0.4996, + 0.2401, + 0.0832, + 0.6424, + 0.1146, + 0.0893, + 0.6079, + 0.1242, + 0.8365, + 0.0869, + 0.7983, + 0.24, + 0.4255, + 0.4986, + 0.2428, + 0.7826, + 0.8154, + 0.1781, + 0.1743, + 0.9812, + 0.2951, + 0.9644, + 0.0351, + 0.5613, + 0.1505, + 0.6068, + 0.8635, + 0.253, + 0.775, + 0.3604, + 0.9969, + 0.0642, + 0.5366, + 0.0094, + 0.788, + 0.452, + 0.2157, + 0.002, + 0.69, + 0.6228, + 0.1719, + 0.1993, + 0.2914, + 0.4227, + 0.3336, + 0.8004, + 0.9922, + 0.8272, + 0.3959, + 0.8664, + 0.5875, + 0.4394, + 0.5068, + 0.142, + 0.1287, + 0.3815, + 0.4733, + 0.4231, + 0.368, + 0.5507, + 0.8745, + 0.269, + 0.7534, + 0.5601, + 0.2595, + 0.7113, + 0.0682, + 0.5131, + 0.9884, + 0.384, + 0.8433, + 0.0163, + 0.4134, + 0.1701, + 0.1075, + 0.6479, + 0.0492, + 0.8874, + 0.1611, + 0.7955, + 0.489, + 0.6678, + 0.2416, + 0.2184, + 0.6918, + 0.4693, + 0.3236, + 0.1408, + 0.1742, + 0.9864, + 0.5166, + 0.7098, + 0.606, + 0.2156, + 0.9914, + 0.3908, + 0.9723, + 0.7943, + 0.0294, + 0.568, + 0.6939, + 0.4426, + 0.484, + 0.0599, + 0.7228, + 0.7605, + 0.4462, + 0.8293, + 0.9572, + 0.0422, + 0.8025, + 0.833, + 0.6761, + 0.5969, + 0.9602, + 0.0403, + 0.495, + 0.177, + 0.2823, + 0.6961, + 0.3523, + 0.9749, + 0.9555, + 0.676, + 0.7817, + 0.1104, + 0.4404, + 0.564, + 0.5223, + 0.5014, + 0.1238, + 0.6343, + 0.3047, + 0.6085, + 0.3174, + 0.6231, + 0.4465, + 0.7266, + 0.8796, + 0.6209, + 0.2151, + 0.4375, + 0.676, + 0.272, + 0.9376, + 0.3136, + 0.6815, + 0.7809, + 0.3784, + 0.1853, + 0.8332, + 0.0458, + 0.0822, + 0.0723, + 0.077, + 0.6292, + 0.5906, + 0.9481, + 0.1744, + 0.7246, + 0.6392, + 0.1163, + 0.8151, + 0.7337, + 0.388, + 0.0202, + 0.7419, + 0.4009, + 0.6456, + 0.9416, + 0.6298, + 0.0368, + 0.1044, + 0.6171, + 0.1713, + 0.513, + 0.0406, + 0.5091, + 0.6447, + 0.6499, + 0.9909, + 0.2939, + 0.0203, + 0.4984, + 0.2826, + 0.1541, + 0.1729, + 0.2589, + 0.0646, + 0.6226, + 0.533, + 0.6736, + 0.1086, + 0.7531, + 0.6272, + 0.3435, + 0.5745, + 0.8688, + 0.1463, + 0.6087, + 0.7258, + 0.6988, + 0.2258, + 0.2355, + 0.7155, + 0.7545, + 0.0024, + 0.0756, + 0.6968, + 0.7232, + 0.2981, + 0.6, + 0.6035, + 0.3269, + 0.2546, + 0.6826, + 0.9897, + 0.3701, + 0.7073, + 0.2955, + 0.1617, + 0.1838, + 0.0774, + 0.9545, + 0.8379, + 0.0686, + 0.5992, + 0.5189, + 0.7797, + 0.2465, + 0.6134, + 0.4414, + 0.654, + 0.4576, + 0.6734, + 0.7926, + 0.4188, + 0.7794, + 0.5533, + 0.8864, + 0.9549, + 0.987, + 0.3371, + 0.5302, + 0.0186, + 0.7689, + 0.3901, + 0.1687, + 0.46, + 0.2957, + 0.1137, + 0.249, + 0.4377, + 0.1091, + 0.1175, + 0.3786, + 0.4685, + 0.1403, + 0.6591, + 0.1985, + 0.8291, + 0.3868, + 0.8126, + 0.1472, + 0.2106, + 0.8798, + 0.877, + 0.4069, + 0.0919, + 0.9121, + 0.8681, + 0.8115, + 0.2594, + 0.1927, + 0.5951, + 0.4806, + 0.3868, + 0.1719, + 0.9219, + 0.9965, + 0.4868, + 0.7666, + 0.7384, + 0.4166, + 0.5991, + 0.2951, + 0.916, + 0.1207, + 0.3606, + 0.8363, + 0.0213, + 0.1747, + 0.8391, + 0.5377, + 0.8552, + 0.7663, + 0.0904, + 0.9802, + 0.5367, + 0.1896, + 0.642, + 0.1357, + 0.9346, + 0.8848, + 0.6435, + 0.1546, + 0.2715, + 0.4286, + 0.0923, + 0.8883, + 0.5351, + 0.0419, + 0.9533, + 0.2286, + 0.288, + 0.5525, + 0.6997, + 0.3589, + 0.0391, + 0.7684, + 0.2589, + 0.2898, + 0.6408, + 0.9742, + 0.9511, + 0.1041, + 0.4722, + 0.2741, + 0.4643, + 0.6335, + 0.3537, + 0.1163, + 0.1717, + 0.8392, + 0.3819, + 0.5469, + 0.6627, + 0.7456, + 0.7092, + 0.3928, + 0.0433, + 0.3764, + 0.2547, + 0.8094, + 0.0233, + 0.4248, + 0.8668, + 0.6738, + 0.3683, + 0.7898, + 0.9222, + 0.9304, + 0.6324, + 0.5659, + 0.8284, + 0.745, + 0.7613, + 0.8397, + 0.7011, + 0.659, + 0.0088, + 0.4022, + 0.5606, + 0.6691, + 0.8193, + 0.6944, + 0.3759, + 0.7371, + 0.5457, + 0.3531, + 0.515, + 0.3941, + 0.2488, + 0.7753, + 0.5026, + 0.8763, + 0.9203, + 0.292, + 0.6049, + 0.3204, + 0.8904, + 0.9827, + 0.8607, + 0.3437, + 0.5377, + 0.6903, + 0.9827, + 0.48, + 0.8828, + 0.956, + 0.137, + 0.2834, + 0.2793, + 0.7322, + 0.9074, + 0.8767, + 0.2023, + 0.962, + 0.3238, + 0.8545, + 0.1885, + 0.7912, + 0.8434, + 0.8716, + 0.1276, + 0.5022, + 0.3939, + 0.3113, + 0.7866, + 0.0841, + 0.6441, + 0.0681, + 0.229, + 0.2512, + 0.7106, + 0.7416, + 0.184, + 0.7855, + 0.0206, + 0.9206, + 0.8386, + 0.6297, + 0.5103, + 0.7619, + 0.6877, + 0.6424, + 0.3732, + 0.86, + 0.0393, + 0.0104, + 0.3888, + 0.4201, + 0.3302, + 0.7736, + 0.6589, + 0.5744, + 0.1901, + 0.5287, + 0.6259, + 0.8358, + 0.4149, + 0.6015, + 0.1758, + 0.2843, + 0.3259, + 0.91, + 0.0617, + 0.3643, + 0.8757, + 0.6411, + 0.4506, + 0.5524, + 0.1723, + 0.1778, + 0.8812, + 0.1478, + 0.1773, + 0.106, + 0.7983, + 0.1501, + 0.066, + 0.9712, + 0.3876, + 0.4455, + 0.4388, + 0.4831, + 0.7523, + 0.7218, + 0.8974, + 0.2811, + 0.8826, + 0.8135, + 0.487, + 0.5317, + 0.6868, + 0.8242, + 0.7626, + 0.4599, + 0.6801, + 0.8002, + 0.7304, + 0.6725, + 0.0478, + 0.6093, + 0.1724, + 0.1658, + 0.6411, + 0.2226, + 0.2803, + 0.1349, + 0.9851, + 0.6043, + 0.6713, + 0.334, + 0.8387, + 0.9557, + 0.1577, + 0.0248, + 0.1422, + 0.7512, + 0.7971, + 0.985, + 0.1277, + 0.4055, + 0.8573, + 0.5024, + 0.2296, + 0.0748, + 0.3585, + 0.2566, + 0.6446, + 0.3777, + 0.7685, + 0.986, + 0.8499, + 0.0036, + 0.3719, + 0.792, + 0.0633, + 0.5579, + 0.7205, + 0.8957, + 0.5686, + 0.041, + 0.8342, + 0.2578, + 0.8432, + 0.8057, + 0.8183, + 0.9059, + 0.1388, + 0.3811, + 0.0446, + 0.4808, + 0.302, + 0.7633, + 0.5963, + 0.4587, + 0.76, + 0.4176, + 0.3088, + 0.1595, + 0.3959, + 0.5029, + 0.7741, + 0.1686, + 0.7286, + 0.5704, + 0.4382, + 0.7065, + 0.7392, + 0.5441, + 0.2859, + 0.9456, + 0.564, + 0.6209, + 0.265, + 0.0514, + 0.7823, + 0.0723, + 0.053, + 0.3513, + 0.6109, + 0.6225, + 0.8057, + 0.3376, + 0.2061, + 0.2754, + 0.4559, + 0.8968, + 0.525, + 0.2762, + 0.7002, + 0.4519, + 0.9023, + 0.5976, + 0.7696, + 0.7021, + 0.2183, + 0.4184, + 0.5737, + 0.6035, + 0.8392, + 0.0421, + 0.1195, + 0.4186, + 0.165, + 0.4806, + 0.7982, + 0.5532, + 0.8526, + 0.2526, + 0.4382, + 0.9573, + 0.2695, + 0.2538, + 0.6995, + 0.0993, + 0.8253, + 0.581, + 0.5038, + 0.0184, + 0.6997, + 0.2038, + 0.3037, + 0.5941, + 0.8229, + 0.6297, + 0.2244, + 0.8345, + 0.482, + 0.7371, + 0.5842, + 0.1231, + 0.2281, + 0.8544, + 0.9669, + 0.3714, + 0.2721, + 0.1579, + 0.7254, + 0.9253, + 0.974, + 0.8684, + 0.0674, + 0.0119, + 0.6609, + 0.1312, + 0.8861, + 0.3433, + 0.8875, + 0.2439, + 0.4889, + 0.8359, + 0.8078, + 0.4327, + 0.0672, + 0.2302, + 0.0669, + 0.9121, + 0.2593, + 0.7983, + 0.6584, + 0.2869, + 0.8722, + 0.7953, + 0.7747, + 0.0898, + 0.2959, + 0.3814, + 0.1595, + 0.8481, + 0.7544, + 0.7211, + 0.9288, + 0.1184, + 0.963, + 0.7672, + 0.5056, + 0.3625, + 0.2647, + 0.667, + 0.5546, + 0.8664, + 0.3889, + 0.2864, + 0.991, + 0.2799, + 0.0669, + 0.5273, + 0.8997, + 0.762, + 0.059, + 0.3586, + 0.3603, + 0.9172, + 0.0765, + 0.5104, + 0.2329, + 0.7728, + 0.8926, + 0.0022, + 0.1113, + 0.4742, + 0.1652, + 0.8933, + 0.7752, + 0.4066, + 0.1506, + 0.9141, + 0.285, + 0.6214, + 0.2129, + 0.7606, + 0.9042, + 0.9931, + 0.2745, + 0.5121, + 0.5073, + 0.8439, + 0.6641, + 0.6524, + 0.3902, + 0.5664, + 0.1659, + 0.6583, + 0.0696, + 0.2853, + 0.6965, + 0.5, + 0.9763, + 0.3539, + 0.67, + 0.8959, + 0.0056, + 0.9374, + 0.2252, + 0.835, + 0.1212, + 0.0629, + 0.2504, + 0.6312, + 0.1092, + 0.9457, + 0.7898, + 0.6459, + 0.7215, + 0.6293, + 0.615, + 0.4248, + 0.4004, + 0.3216, + 0.9836, + 0.2505, + 0.7686, + 0.9329, + 0.1676, + 0.7665, + 0.0051, + 0.1731, + 0.4354, + 0.3666, + 0.8673, + 0.8155, + 0.9709, + 0.1049, + 0.5902, + 0.3632, + 0.7957, + 0.4223, + 0.574, + 0.8257, + 0.4185, + 0.3107, + 0.7008, + 0.8116, + 0.3766, + 0.0845, + 0.6708, + 0.6787, + 0.957, + 0.6352, + 0.027, + 0.0511, + 0.2237, + 0.7163, + 0.4269, + 0.5046, + 0.874, + 0.6083, + 0.2977, + 0.542, + 0.0754, + 0.7998, + 0.0473, + 0.0715, + 0.2713, + 0.622, + 0.6576, + 0.857, + 0.0173, + 0.0882, + 0.0647, + 0.1195, + 0.7666, + 0.6274, + 0.2218, + 0.0429, + 0.6216, + 0.7383, + 0.9694, + 0.223, + 0.4497, + 0.6669, + 0.4787, + 0.5057, + 0.2527, + 0.0028, + 0.7827, + 0.0868, + 0.3135, + 0.3471, + 0.8274, + 0.8969, + 0.1766, + 0.2396, + 0.6755, + 0.7317, + 0.107, + 0.1911, + 0.9822, + 0.2947, + 0.9422, + 0.3427, + 0.8879, + 0.6649, + 0.0631, + 0.131, + 0.1266, + 0.0132, + 0.0578, + 0.2166, + 0.3232, + 0.2307, + 0.0875, + 0.2218, + 0.6738, + 0.7884, + 0.2262, + 0.6753, + 0.7624, + 0.9712, + 0.4432, + 0.9329, + 0.3769, + 0.378, + 0.7154, + 0.0643, + 0.3885, + 0.3412, + 0.1042, + 0.5739, + 0.9072, + 0.1366, + 0.2471, + 0.368, + 0.1191, + 0.4305, + 0.7274, + 0.9439, + 0.2959, + 0.2393, + 0.9186, + 0.3837, + 0.258, + 0.7295, + 0.8062, + 0.152, + 0.3342, + 0.3283, + 0.8463, + 0.3275, + 0.4402, + 0.6412, + 0.8189, + 0.2347, + 0.8196, + 0.7701, + 0.8737, + 0.8592, + 0.3255, + 0.5536, + 0.1525, + 0.9318, + 0.6885, + 0.2788, + 0.898, + 0.3385, + 0.7404, + 0.1043, + 0.0567, + 0.2539, + 0.255, + 0.5231, + 0.1513, + 0.8675, + 0.5501, + 0.8323, + 0.8462, + 0.3978, + 0.417, + 0.542, + 0.18, + 0.0999, + 0.9832, + 0.2536, + 0.4307, + 0.1055, + 0.2439, + 0.5838, + 0.1687, + 0.8707, + 0.7795, + 0.2004, + 0.8588, + 0.6913, + 0.1338, + 0.9247, + 0.3206, + 0.9414, + 0.6541, + 0.2321, + 0.0007, + 0.0121, + 0.1522, + 0.2107, + 0.2094, + 0.245, + 0.145, + 0.2624, + 0.1285, + 0.5373, + 0.0622, + 0.6198, + 0.8598, + 0.9106, + 0.899, + 0.5225, + 0.0004, + 0.1412, + 0.2593, + 0.1634, + 0.772, + 0.8349, + 0.7472, + 0.643, + 0.421, + 0.5611, + 0.6286, + 0.4193, + 0.8079, + 0.205, + 0.0738, + 0.6091, + 0.9445, + 0.7406, + 0.0472, + 0.3986, + 0.4681, + 0.6725, + 0.1861, + 0.7752, + 0.0239, + 0.7192, + 0.8319, + 0.69, + 0.505, + 0.1439, + 0.5867, + 0.6, + 0.464, + 0.6787, + 0.7167, + 0.7723, + 0.1571, + 0.2915, + 0.3051, + 0.6946, + 0.0776, + 0.7913, + 0.3295, + 0.5701, + 0.0945, + 0.8965, + 0.5616, + 0.8555, + 0.403, + 0.3122, + 0.9599, + 0.7006, + 0.3772, + 0.1482, + 0.15, + 0.3675, + 0.3043, + 0.8223, + 0.5657, + 0.7316, + 0.0816, + 0.2699, + 0.7868, + 0.1302, + 0.276, + 0.6927, + 0.2621, + 0.0013, + 0.2451, + 0.5763, + 0.6006, + 0.7335, + 0.5838, + 0.2219, + 0.3401, + 0.6723, + 0.7321, + 0.4922, + 0.5889, + 0.7425, + 0.5566, + 0.5788, + 0.4584, + 0.7229, + 0.2676, + 0.241, + 0.3524, + 0.2744, + 0.2659, + 0.595, + 0.4171, + 0.4484, + 0.7979, + 0.9191, + 0.2409, + 0.5743, + 0.7275, + 0.7224, + 0.7538, + 0.6671, + 0.0615, + 0.3975, + 0.1297, + 0.0627, + 0.9049, + 0.3238, + 0.2596, + 0.1854, + 0.6775, + 0.4276, + 0.3367, + 0.1801, + 0.5126, + 0.976, + 0.208, + 0.7502, + 0.3047, + 0.1592, + 0.7038, + 0.0807, + 0.3124, + 0.9466, + 0.1146, + 0.6629, + 0.2278, + 0.6597, + 0.0083, + 0.6743, + 0.2036, + 0.3746, + 0.4748, + 0.432, + 0.946, + 0.5955, + 0.3756, + 0.8767, + 0.7113, + 0.6914, + 0.6177, + 0.8901, + 0.0324, + 0.3292, + 0.1759, + 0.5051, + 0.0132, + 0.2806, + 0.6161, + 0.8083, + 0.4776, + 0.6043, + 0.6728, + 0.9401, + 0.6057, + 0.2764, + 0.2104, + 0.4854, + 0.8134, + 0.4948, + 0.0658, + 0.0828, + 0.3909, + 0.8165, + 0.5422, + 0.5218, + 0.9475, + 0.9499, + 0.9794, + 0.1393, + 0.2511, + 0.1316, + 0.0995, + 0.7185, + 0.6006, + 0.0082, + 0.7667, + 0.4501, + 0.9127, + 0.4003, + 0.933, + 0.6261, + 0.6173, + 0.6221, + 0.7522, + 0.4028, + 0.2045, + 0.0742, + 0.6691, + 0.3074, + 0.2888, + 0.411, + 0.7079, + 0.4811, + 0.158, + 0.2714, + 0.6989, + 0.6737, + 0.4329, + 0.0382, + 0.059, + 0.6905, + 0.887, + 0.9682, + 0.1082, + 0.8665, + 0.0169, + 0.0514, + 0.6438, + 0.3779, + 0.2542, + 0.3764, + 0.7927, + 0.9542, + 0.2678, + 0.0318, + 0.5491, + 0.622, + 0.9057, + 0.7215, + 0.2677, + 0.6248, + 0.7167, + 0.8159, + 0.1101, + 0.0955, + 0.8551, + 0.6584, + 0.3497, + 0.6662, + 0.7664, + 0.8664, + 0.5148, + 0.0049, + 0.5695, + 0.3076, + 0.9364, + 0.6228, + 0.9488, + 0.7753, + 0.8414, + 0.7641, + 0.6126, + 0.4855, + 0.6628, + 0.8329, + 0.5344, + 0.7896, + 0.8476, + 0.6085, + 0.7097, + 0.4756, + 0.544, + 0.8204, + 0.493, + 0.4648, + 0.688, + 0.395, + 0.3619, + 0.1996, + 0.9862, + 0.901, + 0.6808, + 0.651, + 0.7473, + 0.947, + 0.6474, + 0.4377, + 0.5913, + 0.3917, + 0.4, + 0.0034, + 0.389, + 0.6471, + 0.3398, + 0.9248, + 0.724, + 0.0144, + 0.094, + 0.4027, + 0.5747, + 0.8255, + 0.5385, + 0.9028, + 0.1346, + 0.6253, + 0.6433, + 0.5175, + 0.1067, + 0.3654, + 0.845, + 0.8604, + 0.4781, + 0.8697, + 0.7998, + 0.0503, + 0.6962, + 0.2151, + 0.165, + 0.8112, + 0.9871, + 0.4982, + 0.0871, + 0.1946, + 0.0111, + 0.6398, + 0.538, + 0.3027, + 0.0263, + 0.4774, + 0.4077, + 0.3366, + 0.999, + 0.5582, + 0.3176, + 0.2391, + 0.7176, + 0.0788, + 0.1463, + 0.3355, + 0.5433, + 0.0262, + 0.0611, + 0.4941, + 0.0786, + 0.0666, + 0.7847, + 0.4148, + 0.9887, + 0.0495, + 0.1215, + 0.7477, + 0.0868, + 0.0109, + 0.9604, + 0.5662, + 0.9694, + 0.07, + 0.9448, + 0.1936, + 0.0642, + 0.577, + 0.5059, + 0.8092, + 0.9354, + 0.3261, + 0.516, + 0.7969, + 0.8303, + 0.2455, + 0.1131, + 0.6302, + 0.9678, + 0.1456, + 0.9636, + 0.8373, + 0.7112, + 0.6847, + 0.6215, + 0.1522, + 0.1364, + 0.8862, + 0.0646, + 0.829, + 0.3801, + 0.9584, + 0.253, + 0.0124, + 0.0916, + 0.0794, + 0.2018, + 0.7268, + 0.3865, + 0.6128, + 0.6898, + 0.6709, + 0.7262, + 0.0703, + 0.6397, + 0.8557, + 0.0741, + 0.3767, + 0.0135, + 0.1599, + 0.7603, + 0.7677, + 0.1712, + 0.3562, + 0.3007, + 0.9695, + 0.7289, + 0.1669, + 0.4754, + 0.4463, + 0.4321, + 0.3715, + 0.367, + 0.5908, + 0.4302, + 0.6957, + 0.0729, + 0.5038, + 0.4202, + 0.1383, + 0.7508, + 0.3035, + 0.4744, + 0.6202, + 0.0808, + 0.0408, + 0.1287, + 0.4302, + 0.117, + 0.8937, + 0.2437, + 0.2881, + 0.9135, + 0.0752, + 0.7168, + 0.8221, + 0.5861, + 0.4072, + 0.5309, + 0.3246, + 0.4053, + 0.6678, + 0.5265, + 0.9265, + 0.4697, + 0.6693, + 0.7094, + 0.4031, + 0.0198, + 0.1359, + 0.5269, + 0.6963, + 0.3268, + 0.1595, + 0.7141, + 0.4462, + 0.5158, + 0.2479, + 0.9737, + 0.8311, + 0.1373, + 0.6018, + 0.2878, + 0.0006, + 0.09, + 0.3161, + 0.4584, + 0.7191, + 0.3966, + 0.9387, + 0.2654, + 0.7992, + 0.8273, + 0.9193, + 0.7215, + 0.7406, + 0.4066, + 0.5607, + 0.9567, + 0.9293, + 0.7722, + 0.4701, + 0.2688, + 0.1834, + 0.7268, + 0.4848, + 0.6429, + 0.4307, + 0.1153, + 0.6976, + 0.4372, + 0.9908, + 0.2214, + 0.2522, + 0.8227, + 0.1474, + 0.7255, + 0.4305, + 0.5704, + 0.8793, + 0.3278, + 0.1493, + 0.8514, + 0.8134, + 0.7533, + 0.0971, + 0.0731, + 0.0522, + 0.1705, + 0.0673, + 0.4813, + 0.8795, + 0.9755, + 0.7231, + 0.9065, + 0.7708, + 0.8252, + 0.7371, + 0.3557, + 0.9433, + 0.4624, + 0.4663, + 0.655, + 0.5581, + 0.6653, + 0.765, + 0.8058, + 0.5525, + 0.6175, + 0.3012, + 0.5652, + 0.659, + 0.9942, + 0.3781, + 0.8684, + 0.2626, + 0.189, + 0.6086, + 0.7095, + 0.6565, + 0.3874, + 0.766, + 0.6969, + 0.4475, + 0.0574, + 0.764, + 0.4663, + 0.7382, + 0.3915, + 0.7236, + 0.7324, + 0.3877, + 0.3675, + 0.648, + 0.2254, + 0.0847, + 0.223, + 0.2229, + 0.8046, + 0.8812, + 0.6651, + 0.5045, + 0.5014, + 0.4951, + 0.3715, + 0.7822, + 0.736, + 0.1021, + 0.1164, + 0.9607, + 0.0362, + 0.2073, + 0.1503, + 0.2692, + 0.234, + 0.2425, + 0.9352, + 0.6313, + 0.6329, + 0.3768, + 0.9566, + 0.4852, + 0.5811, + 0.2579, + 0.7669, + 0.3953, + 0.9354, + 0.2315, + 0.5554, + 0.7919, + 0.0481, + 0.7223, + 0.94, + 0.5094, + 0.2059, + 0.8462, + 0.9217, + 0.6195, + 0.1971, + 0.2508, + 0.1434, + 0.7007, + 0.3996, + 0.0544, + 0.1677, + 0.0523, + 0.8954, + 0.8489, + 0.7429, + 0.0312, + 0.5331, + 0.2396, + 0.2312, + 0.4771, + 0.1618, + 0.8604, + 0.5758, + 0.4002, + 0.4458, + 0.468, + 0.5302, + 0.2145, + 0.6177, + 0.7329, + 0.5823, + 0.6366, + 0.0465, + 0.1046, + 0.6563, + 0.2189, + 0.6223, + 0.7093, + 0.5445, + 0.2529, + 0.2202, + 0.5515, + 0.3189, + 0.4514, + 0.5159, + 0.3527, + 0.4471, + 0.9195, + 0.5792, + 0.2651, + 0.2914, + 0.3308, + 0.5875, + 0.5605, + 0.3181, + 0.624, + 0.8857, + 0.8261, + 0.925, + 0.3652, + 0.3706, + 0.7541, + 0.1979, + 0.4369, + 0.001, + 0.9499, + 0.1772, + 0.8008, + 0.1835, + 0.5097, + 0.8259, + 0.8481, + 0.1349, + 0.6573, + 0.6188, + 0.9566, + 0.9025, + 0.0856, + 0.5123, + 0.252, + 0.1696, + 0.1131, + 0.7371, + 0.2917, + 0.2999, + 0.1635, + 0.2114, + 0.8943, + 0.9676, + 0.2454, + 0.9116, + 0.3121, + 0.6236, + 0.554, + 0.5033, + 0.8288, + 0.117, + 0.3289, + 0.6361, + 0.8127, + 0.8344, + 0.1153, + 0.4096, + 0.1134, + 0.7377, + 0.2092, + 0.8933, + 0.1387, + 0.2933, + 0.0266, + 0.7909, + 0.8036, + 0.0109, + 0.8323, + 0.8399, + 0.7273, + 0.5364, + 0.5047, + 0.5195, + 0.2354, + 0.3749, + 0.2317, + 0.8946, + 0.4115, + 0.8075, + 0.4195, + 0.9806, + 0.9579, + 0.6942, + 0.9238, + 0.2198, + 0.055, + 0.3805, + 0.7392, + 0.142, + 0.0739, + 0.8939, + 0.871, + 0.0859, + 0.6828, + 0.6533, + 0.1965, + 0.6237, + 0.261, + 0.45, + 0.4936, + 0.2467, + 0.1206, + 0.8739, + 0.0099, + 0.3429, + 0.9292, + 0.7616, + 0.0039, + 0.8662, + 0.5601, + 0.0602, + 0.6734, + 0.467, + 0.8372, + 0.2419, + 0.6065, + 0.0689, + 0.9111, + 0.3334, + 0.0966, + 0.7155, + 0.3369, + 0.0162, + 0.836, + 0.1756, + 0.6632, + 0.8206, + 0.2333, + 0.4329, + 0.1444, + 0.6044, + 0.8721, + 0.7096, + 0.0609, + 0.2097, + 0.1669, + 0.0555, + 0.2625, + 0.0303, + 0.3297, + 0.0334, + 0.0007, + 0.7661, + 0.1337, + 0.1119, + 0.8684, + 0.9757, + 0.2267, + 0.5128, + 0.0316, + 0.2298, + 0.893, + 0.077, + 0.5672, + 0.8068, + 0.6181, + 0.7741, + 0.3769, + 0.874, + 0.0969, + 0.648, + 0.3394, + 0.3036, + 0.2359, + 0.3416, + 0.0137, + 0.1673, + 0.8443, + 0.3457, + 0.9725, + 0.4802, + 0.203, + 0.8932, + 0.9702, + 0.1411, + 0.5859, + 0.9676, + 0.6751, + 0.6673, + 0.425, + 0.3659, + 0.6636, + 0.8887, + 0.039, + 0.295, + 0.4817, + 0.3054, + 0.3501, + 0.866, + 0.8007, + 0.8113, + 0.3588, + 0.7894, + 0.0831, + 0.5635, + 0.7461, + 0.7465, + 0.9575, + 0.1239, + 0.1227, + 0.5768, + 0.0295, + 0.3208, + 0.7493, + 0.2001, + 0.7525, + 0.2028, + 0.2909, + 0.5242, + 0.8614, + 0.3033, + 0.1735, + 0.869, + 0.8147, + 0.9057, + 0.5214, + 0.1459, + 0.5149, + 0.8123, + 0.9728, + 0.1199, + 0.2156, + 0.3156, + 0.1485, + 0.9374, + 0.7639, + 0.681, + 0.4806, + 0.7716, + 0.6094, + 0.9463, + 0.4799, + 0.775, + 0.0627, + 0.1519, + 0.3268, + 0.5987, + 0.0764, + 0.905, + 0.1749, + 0.1311, + 0.2549, + 0.0702, + 0.4835, + 0.1994, + 0.0124, + 0.446, + 0.7258, + 0.354, + 0.7336, + 0.6284, + 0.9004, + 0.504, + 0.1124, + 0.5609, + 0.1491, + 0.985, + 0.62, + 0.0077, + 0.6902, + 0.5779, + 0.3135, + 0.2756, + 0.9313, + 0.7873, + 0.7653, + 0.4617, + 0.0116, + 0.9449, + 0.722, + 0.6524, + 0.3517, + 0.8794, + 0.8707, + 0.452, + 0.8238, + 0.2614, + 0.1554, + 0.848, + 0.9627, + 0.9344, + 0.7026, + 0.6659, + 0.8004, + 0.0478, + 0.2107, + 0.3766, + 0.0984, + 0.4582, + 0.5088, + 0.9305, + 0.5363, + 0.6697, + 0.3898, + 0.4118, + 0.636, + 0.3521, + 0.8406, + 0.3545, + 0.1427, + 0.3995, + 0.7436, + 0.4941, + 0.8598, + 0.8083, + 0.34, + 0.0643, + 0.4728, + 0.3409, + 0.9005, + 0.3421, + 0.3893, + 0.0796, + 0.5689, + 0.9747, + 0.4, + 0.6604, + 0.6112, + 0.4795, + 0.0254, + 0.3178, + 0.6692, + 0.9663, + 0.5635, + 0.4284, + 0.9885, + 0.8989, + 0.4105, + 0.3776, + 0.0168, + 0.3606, + 0.4808, + 0.0646, + 0.9679, + 0.4316, + 0.5902, + 0.8324, + 0.5299, + 0.7541, + 0.1185, + 0.7781, + 0.3497, + 0.8707, + 0.3053, + 0.9916, + 0.9977, + 0.9382, + 0.5541, + 0.1543, + 0.1902, + 0.6357, + 0.0532, + 0.1025, + 0.9832, + 0.8306, + 0.4185, + 0.4546, + 0.9916, + 0.1571, + 0.6478, + 0.892, + 0.2632, + 0.3336, + 0.8454, + 0.6999, + 0.8556, + 0.1766, + 0.0647, + 0.5705, + 0.7691, + 0.2367, + 0.251, + 0.4519, + 0.9946, + 0.4533, + 0.1992, + 0.8786, + 0.9826, + 0.3216, + 0.7694, + 0.3022, + 0.7021, + 0.2001, + 0.6161, + 0.6827, + 0.3834, + 0.7714, + 0.7711, + 0.4791, + 0.9356, + 0.7785, + 0.3947, + 0.054, + 0.3886, + 0.5102, + 0.5829, + 0.6514, + 0.8549, + 0.2484, + 0.7302, + 0.254, + 0.3185, + 0.908, + 0.2853, + 0.8047, + 0.3478, + 0.8122, + 0.9378, + 0.4657, + 0.9274, + 0.5839, + 0.1292, + 0.3633, + 0.6077, + 0.1215, + 0.4603, + 0.3223, + 0.2447, + 0.4207, + 0.2937, + 0.0633, + 0.6206, + 0.2273, + 0.5307, + 0.4601, + 0.9774, + 0.3932, + 0.0838, + 0.9088, + 0.052, + 0.9322, + 0.6799, + 0.5986, + 0.779, + 0.8581, + 0.3143, + 0.4349, + 0.0821, + 0.4542, + 0.2661, + 0.9656, + 0.727, + 0.8023, + 0.744, + 0.9036, + 0.4099, + 0.6592, + 0.7906, + 0.0888, + 0.5435, + 0.6184, + 0.6661, + 0.1116, + 0.0674, + 0.7704, + 0.5685, + 0.6114, + 0.1755, + 0.3537, + 0.1691, + 0.6009, + 0.8271, + 0.7117, + 0.9575, + 0.572, + 0.9875, + 0.4956, + 0.9122, + 0.1277, + 0.2309, + 0.902, + 0.9247, + 0.1503, + 0.1883, + 0.3974, + 0.999, + 0.6503, + 0.5192, + 0.3896, + 0.7238, + 0.6814, + 0.1723, + 0.2878, + 0.3157, + 0.4008, + 0.8521, + 0.2035, + 0.1577, + 0.475, + 0.6433, + 0.3594, + 0.3682, + 0.659, + 0.8485, + 0.2183, + 0.2533, + 0.2257, + 0.5427, + 0.6546, + 0.4295, + 0.9553, + 0.0058, + 0.187, + 0.4206, + 0.3871, + 0.018, + 0.8054, + 0.0097, + 0.3808, + 0.9828, + 0.2798, + 0.5205, + 0.1701, + 0.2022, + 0.6758, + 0.7549, + 0.8023, + 0.7856, + 0.0281, + 0.0702, + 0.3538, + 0.3156, + 0.2451, + 0.6982, + 0.1972, + 0.3384, + 0.3191, + 0.1791, + 0.1718, + 0.6448, + 0.3208, + 0.0269, + 0.9337, + 0.9906, + 0.9954, + 0.8156, + 0.9393, + 0.2155, + 0.302, + 0.7776, + 0.4413, + 0.7044, + 0.4312, + 0.7291, + 0.2712, + 0.5476, + 0.6171, + 0.2073, + 0.2801, + 0.4907, + 0.2049, + 0.5616, + 0.1811, + 0.114, + 0.6985, + 0.8789, + 0.5704, + 0.5462, + 0.1758, + 0.7364, + 0.7495, + 0.1354, + 0.8864, + 0.9794, + 0.2552, + 0.1939, + 0.151, + 0.6242, + 0.6616, + 0.7435, + 0.0192, + 0.6063, + 0.7404, + 0.9611, + 0.1366, + 0.5113, + 0.2391, + 0.3229, + 0.3439, + 0.4288, + 0.0933, + 0.0937, + 0.7812, + 0.0897, + 0.6653, + 0.4839, + 0.9651, + 0.8956, + 0.2215, + 0.5673, + 0.3319, + 0.5953, + 0.7014, + 0.591, + 0.0545, + 0.14, + 0.3639, + 0.0252, + 0.9495, + 0.0807, + 0.3388, + 0.0005, + 0.1752, + 0.2397, + 0.8486, + 0.8625, + 0.6945, + 0.5544, + 0.4106, + 0.4772, + 0.2871, + 0.6881, + 0.7458, + 0.0398, + 0.9997, + 0.9588, + 0.0116, + 0.8779, + 0.1795, + 0.0934, + 0.4715, + 0.0972, + 0.6232, + 0.7419, + 0.6183, + 0.2256, + 0.3467, + 0.6679, + 0.2764, + 0.3414, + 0.7025, + 0.6335, + 0.2379, + 0.7124, + 0.9314, + 0.0589, + 0.0411, + 0.9859, + 0.5237, + 0.3335, + 0.5474, + 0.4711, + 0.8952, + 0.8108, + 0.5388, + 0.1172, + 0.336, + 0.7631, + 0.493, + 0.1366, + 0.7964, + 0.1782, + 0.0633, + 0.5657, + 0.4191, + 0.929, + 0.3023, + 0.8098, + 0.8396, + 0.7027, + 0.1413, + 0.8507, + 0.7426, + 0.9583, + 0.4004, + 0.0339, + 0.3737, + 0.7034, + 0.7029, + 0.3967, + 0.1559, + 0.5819, + 0.7041, + 0.7409, + 0.7937, + 0.9706, + 0.4708, + 0.2654, + 0.0184, + 0.3924, + 0.8205, + 0.1191, + 0.2838, + 0.5, + 0.0762, + 0.7949, + 0.2777, + 0.7249, + 0.7704, + 0.9627, + 0.1542, + 0.2864, + 0.0861, + 0.3656, + 0.7094, + 0.7606, + 0.9718, + 0.942, + 0.1607, + 0.935, + 0.5478, + 0.7906, + 0.5366, + 0.6098, + 0.2124, + 0.0821, + 0.32, + 0.229, + 0.3433, + 0.4396, + 0.6256, + 0.3113, + 0.8143, + 0.2231, + 0.0835, + 0.3035, + 0.1984, + 0.7884, + 0.8247, + 0.663, + 0.9411, + 0.3431, + 0.3194, + 0.8937, + 0.1331, + 0.5844, + 0.6378, + 0.7775, + 0.1921, + 0.2193, + 0.4181, + 0.8135, + 0.9037, + 0.0755, + 0.4173, + 0.3549, + 0.7474, + 0.4168, + 0.9715, + 0.9526, + 0.1812, + 0.6432, + 0.9908, + 0.7333, + 0.4868, + 0.4491, + 0.3024, + 0.8758, + 0.2195, + 0.7038, + 0.5357, + 0.2072, + 0.2128, + 0.5858, + 0.9873, + 0.6616, + 0.8649, + 0.2776, + 0.6173, + 0.1613, + 0.7397, + 0.2734, + 0.1765, + 0.2458, + 0.035, + 0.9576, + 0.2427, + 0.3134, + 0.2591, + 0.5361, + 0.1772, + 0.5408, + 0.2875, + 0.7625, + 0.5065, + 0.3698, + 0.8041, + 0.0277, + 0.6793, + 0.0283, + 0.1743, + 0.4982, + 0.6385, + 0.5769, + 0.8795, + 0.1812, + 0.6757, + 0.2485, + 0.7885, + 0.9487, + 0.0429, + 0.7262, + 0.4366, + 0.8439, + 0.3105, + 0.8197, + 0.1216, + 0.4712, + 0.5701, + 0.8922, + 0.3581, + 0.0403, + 0.8096, + 0.7125, + 0.9943, + 0.7169, + 0.3082, + 0.5476, + 0.5595, + 0.5912, + 0.7797, + 0.7698, + 0.0554, + 0.2326, + 0.1191, + 0.1462, + 0.1537, + 0.0621, + 0.4651, + 0.8799, + 0.0495, + 0.5487, + 0.5474, + 0.6426, + 0.8778, + 0.7002, + 0.4072, + 0.5227, + 0.7694, + 0.5697, + 0.7647, + 0.1189, + 0.9515, + 0.7865, + 0.0586, + 0.7983, + 0.991, + 0.0052, + 0.3213, + 0.2003, + 0.0639, + 0.5258, + 0.0874, + 0.3521, + 0.6916, + 0.2407, + 0.5333, + 0.7305, + 0.3013, + 0.1845, + 0.5645, + 0.1603, + 0.8636, + 0.8236, + 0.8115, + 0.5265, + 0.7338, + 0.2304, + 0.002, + 0.7142, + 0.7536, + 0.7488, + 0.895, + 0.4139, + 0.4787, + 0.4656, + 0.7118, + 0.9882, + 0.1321, + 0.7094, + 0.7159, + 0.9108, + 0.5891, + 0.4289, + 0.3972, + 0.7464, + 0.511, + 0.0512, + 0.6537, + 0.0832, + 0.547, + 0.9568, + 0.5049, + 0.9244, + 0.6501, + 0.2448, + 0.9177, + 0.7835, + 0.8047, + 0.1106, + 0.297, + 0.4386, + 0.1194, + 0.7352, + 0.2157, + 0.8013, + 0.3949, + 0.3842, + 0.7675, + 0.4546, + 0.7904, + 0.0504, + 0.3088, + 0.154, + 0.9951, + 0.5511, + 0.3798, + 0.0414, + 0.4934, + 0.2236, + 0.7831, + 0.2537, + 0.73, + 0.35, + 0.7785, + 0.1885, + 0.9071, + 0.9011, + 0.7565, + 0.4429, + 0.4267, + 0.2891, + 0.2309, + 0.0305, + 0.0318, + 0.7934, + 0.7052, + 0.7313, + 0.3437, + 0.2751, + 0.5603, + 0.9259, + 0.552, + 0.5605, + 0.4508, + 0.0316, + 0.8971, + 0.9357, + 0.8773, + 0.5724, + 0.9039, + 0.2264, + 0.9177, + 0.381, + 0.0755, + 0.9334, + 0.5708, + 0.4089, + 0.1249, + 0.7698, + 0.1371, + 0.226, + 0.7649, + 0.3583, + 0.4007, + 0.0041, + 0.4905, + 0.2347, + 0.7655, + 0.9283, + 0.3881, + 0.7648, + 0.8199, + 0.4105, + 0.4497, + 0.8681, + 0.4284, + 0.8849, + 0.6523, + 0.2454, + 0.959, + 0.2242, + 0.3889, + 0.4946, + 0.8586, + 0.0648, + 0.271, + 0.4239, + 0.0368, + 0.4916, + 0.2682, + 0.4079, + 0.2464, + 0.8631, + 0.6771, + 0.2729, + 0.2244, + 0.9356, + 0.4626, + 0.4181, + 0.5195, + 0.4386, + 0.027, + 0.5843, + 0.7504, + 0.0153, + 0.0436, + 0.3782, + 0.9372, + 0.2994, + 0.305, + 0.3215, + 0.051, + 0.6358, + 0.2923, + 0.4716, + 0.4344, + 0.6217, + 0.1368, + 0.8187, + 0.3687, + 0.4008, + 0.1019, + 0.7415, + 0.6772, + 0.5487, + 0.4631, + 0.4203, + 0.0357, + 0.2086, + 0.1085, + 0.0654, + 0.461, + 0.0072, + 0.8086, + 0.3057, + 0.6988, + 0.1197, + 0.745, + 0.3092, + 0.2954, + 0.4605, + 0.9742, + 0.7167, + 0.8555, + 0.1869, + 0.3645, + 0.1516, + 0.9809, + 0.0033, + 0.8903, + 0.6996, + 0.8834, + 0.9303, + 0.7581, + 0.3654, + 0.3611, + 0.5705, + 0.3736, + 0.0974, + 0.5559, + 0.5191, + 0.5845, + 0.8598, + 0.3431, + 0.487, + 0.3655, + 0.2678, + 0.8791, + 0.1112, + 0.3012, + 0.4754, + 0.5327, + 0.0575, + 0.8145, + 0.2648, + 0.6622, + 0.1281, + 0.7895, + 0.5189, + 0.0958, + 0.0469, + 0.2303, + 0.3842, + 0.7333, + 0.6972, + 0.2899, + 0.4999, + 0.3921, + 0.6108, + 0.9168, + 0.5376, + 0.5107, + 0.3833, + 0.0857, + 0.5963, + 0.6078, + 0.4818, + 0.6372, + 0.0945, + 0.0568, + 0.5593, + 0.6916, + 0.4271, + 0.3459, + 0.3169, + 0.9014, + 0.1167, + 0.8243, + 0.6003, + 0.6743, + 0.7418, + 0.7272, + 0.6378, + 0.7237, + 0.5276, + 0.1655, + 0.5778, + 0.6273, + 0.8982, + 0.569, + 0.5779, + 0.7067, + 0.6788, + 0.5326, + 0.7196, + 0.4297, + 0.183, + 0.3602, + 0.043, + 0.0656, + 0.303, + 0.3636, + 0.7854, + 0.3619, + 0.9719, + 0.0858, + 0.9123, + 0.043, + 0.6729, + 0.2004, + 0.0732, + 0.9551, + 0.8281, + 0.34, + 0.5476, + 0.3058, + 0.1602, + 0.231, + 0.482, + 0.6, + 0.4833, + 0.472, + 0.8711, + 0.1863, + 0.6627, + 0.5988, + 0.3915, + 0.5887, + 0.2352, + 0.6799, + 0.4154, + 0.5243, + 0.3641, + 0.5979, + 0.755, + 0.67, + 0.1728, + 0.8516, + 0.7397, + 0.2578, + 0.7284, + 0.399, + 0.0553, + 0.9871, + 0.8195, + 0.4442, + 0.7455, + 0.9868, + 0.4691, + 0.1135, + 0.1294, + 0.8063, + 0.639, + 0.2758, + 0.4883, + 0.7834, + 0.9946, + 0.5608, + 0.0499, + 0.8932, + 0.741, + 0.2693, + 0.3242, + 0.6861, + 0.1162, + 0.7425, + 0.4032, + 0.3464, + 0.5799, + 0.0166, + 0.7738, + 0.9844, + 0.6867, + 0.3651, + 0.7639, + 0.5411, + 0.231, + 0.9456, + 0.8638, + 0.2081, + 0.4658, + 0.868, + 0.7316, + 0.2403, + 0.109, + 0.1555, + 0.9051, + 0.1669, + 0.1961, + 0.4603, + 0.6031, + 0.2178, + 0.4093, + 0.7375, + 0.6459, + 0.8251, + 0.0978, + 0.6931, + 0.445, + 0.3774, + 0.2954, + 0.2893, + 0.7242, + 0.6282, + 0.2071, + 0.6189, + 0.1377, + 0.4602, + 0.9577, + 0.8618, + 0.7881, + 0.7612, + 0.5176, + 0.6964, + 0.8865, + 0.3387, + 0.9719, + 0.9528, + 0.4015, + 0.7083, + 0.9612, + 0.5945, + 0.0574, + 0.8626, + 0.4564, + 0.7495, + 0.237, + 0.0255, + 0.183, + 0.7086, + 0.3023, + 0.0319, + 0.418, + 0.6519, + 0.9748, + 0.5457, + 0.6515, + 0.8405, + 0.3718, + 0.2996, + 0.6642, + 0.0867, + 0.298, + 0.8785, + 0.4707, + 0.9443, + 0.7769, + 0.0735, + 0.9106, + 0.4467, + 0.9484, + 0.3423, + 0.2959, + 0.5484, + 0.5828, + 0.1834, + 0.4233, + 0.8477, + 0.7009, + 0.3356, + 0.7671, + 0.81, + 0.3681, + 0.5459, + 0.1783, + 0.7253, + 0.1758, + 0.3209, + 0.3059, + 0.8295, + 0.6646, + 0.4603, + 0.7317, + 0.8359, + 0.8216, + 0.3037, + 0.9182, + 0.0815, + 0.2763, + 0.9933, + 0.9339, + 0.7053, + 0.6387, + 0.8481, + 0.0887, + 0.8367, + 0.3306, + 0.9624, + 0.8325, + 0.1416, + 0.4364, + 0.1229, + 0.0737, + 0.6836, + 0.8886, + 0.9828, + 0.961, + 0.383, + 0.6947, + 0.5514, + 0.8755, + 0.9886, + 0.3824, + 0.514, + 0.7192, + 0.3038, + 0.5413, + 0.6662, + 0.9593, + 0.1041, + 0.8792, + 0.4993, + 0.6917, + 0.0759, + 0.7935, + 0.1345, + 0.9479, + 0.4447, + 0.4057, + 0.3566, + 0.4793, + 0.0838, + 0.9829, + 0.4236, + 0.0965, + 0.9556, + 0.7088, + 0.3926, + 0.2673, + 0.5385, + 0.2239, + 0.642, + 0.5831, + 0.2916, + 0.4136, + 0.5963, + 0.4067, + 0.3162, + 0.0403, + 0.8184, + 0.2748, + 0.9835, + 0.6196, + 0.4702, + 0.367, + 0.0022, + 0.4463, + 0.3861, + 0.8071, + 0.5648, + 0.6725, + 0.778, + 0.9727, + 0.5201, + 0.6485, + 0.6757, + 0.5094, + 0.7306, + 0.5194, + 0.7283, + 0.7707, + 0.9682, + 0.207, + 0.3277, + 0.2672, + 0.2133, + 0.3484, + 0.5088, + 0.736, + 0.1333, + 0.8061, + 0.1118, + 0.6743, + 0.2244, + 0.3269, + 0.0551, + 0.2152, + 0.1395, + 0.9457, + 0.5583, + 0.8943, + 0.5639, + 0.9848, + 0.4772, + 0.1655, + 0.1207, + 0.7782, + 0.6153, + 0.2061, + 0.4576, + 0.6212, + 0.4623, + 0.8248, + 0.6142, + 0.3995, + 0.3807, + 0.2726, + 0.3576, + 0.0872, + 0.7742, + 0.093, + 0.5022, + 0.3664, + 0.4417, + 0.2935, + 0.7691, + 0.9539, + 0.6136, + 0.7406, + 0.9018, + 0.6522, + 0.7883, + 0.8981, + 0.2114, + 0.3065, + 0.7192, + 0.3406, + 0.5162, + 0.7405, + 0.8584, + 0.8849, + 0.7033, + 0.2709, + 0.0013, + 0.5509, + 0.1537, + 0.9391, + 0.6778, + 0.8959, + 0.2859, + 0.1443, + 0.9005, + 0.3805, + 0.6318, + 0.3518, + 0.0103, + 0.9223, + 0.0612, + 0.694, + 0.5447, + 0.5904, + 0.729, + 0.9259, + 0.0665, + 0.1137, + 0.8501, + 0.3203, + 0.2681, + 0.5221, + 0.5031, + 0.2236, + 0.2677, + 0.7058, + 0.8951, + 0.8985, + 0.774, + 0.3622, + 0.8417, + 0.1601, + 0.1296, + 0.7048, + 0.5473, + 0.8113, + 0.8261, + 0.4688, + 0.7047, + 0.0678, + 0.85, + 0.3256, + 0.9649, + 0.7778, + 0.9272, + 0.4135, + 0.6656, + 0.8906 + ], + "timestep": 1, + "start_date": [ + 1, + 1 + ], + "placeholder_value": 0.0, + "interpolate": false, + "schedule_type_limit": "Fractional" + }, + { + "type": "ScheduleRulesetAbridged", + "identifier": "Generic Office Equipment", + "day_schedules": [ + { + "type": "ScheduleDay", + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", + "values": [ + 0.2307553806, + 0.288107175, + 0.2307553806 + ], + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 18, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", + "values": [ + 1.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", + "values": [ + 0.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "values": [ + 0.2307553806, + 0.381234796, + 0.476543495, + 0.3335804465, + 0.285926097, + 0.2307553806 + ], + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 8, + 0 + ], + [ + 12, + 0 + ], + [ + 17, + 0 + ], + [ + 19, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", + "values": [ + 0.3076738408, + 0.381234796, + 0.857778291, + 0.762469592, + 0.857778291, + 0.476543495, + 0.381234796 + ], + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 8, + 0 + ], + [ + 12, + 0 + ], + [ + 13, + 0 + ], + [ + 17, + 0 + ], + [ + 18, + 0 + ] + ], + "interpolate": false + } + ], + "default_day_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", + "schedule_rules": [ + { + "type": "ScheduleRuleAbridged", + "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", + "apply_sunday": false, + "apply_monday": true, + "apply_tuesday": true, + "apply_wednesday": true, + "apply_thursday": true, + "apply_friday": true, + "apply_saturday": false, + "start_date": [ + 1, + 1 + ], + "end_date": [ + 12, + 31 + ] + }, + { + "type": "ScheduleRuleAbridged", + "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "apply_sunday": false, + "apply_monday": false, + "apply_tuesday": false, + "apply_wednesday": false, + "apply_thursday": false, + "apply_friday": false, + "apply_saturday": true, + "start_date": [ + 1, + 1 + ], + "end_date": [ + 12, + 31 + ] + } + ], + "holiday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "summer_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", + "winter_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", + "schedule_type_limit": "Fractional" + }, + { + "type": "ScheduleRulesetAbridged", + "identifier": "Generic Office Infiltration", + "day_schedules": [ + { + "type": "ScheduleDay", + "identifier": "OfficeMedium INFIL_SCH_PNNL_Default", + "values": [ + 1.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", + "values": [ + 1.0, + 0.25, + 1.0 + ], + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 22, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", + "values": [ + 1.0, + 0.25, + 1.0 + ], + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 18, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy", + "values": [ + 1.0, + 0.25, + 1.0 + ], + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 22, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat", + "values": [ + 1.0, + 0.25, + 1.0 + ], + "times": [ + [ + 0, + 0 + ], + [ + 6, + 0 + ], + [ + 18, + 0 + ] + ], + "interpolate": false + } + ], + "default_day_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", + "schedule_rules": [ + { + "type": "ScheduleRuleAbridged", + "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Wkdy", + "apply_sunday": false, + "apply_monday": true, + "apply_tuesday": true, + "apply_wednesday": true, + "apply_thursday": true, + "apply_friday": true, + "apply_saturday": false, + "start_date": [ + 1, + 1 + ], + "end_date": [ + 12, + 31 + ] + }, + { + "type": "ScheduleRuleAbridged", + "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Sat", + "apply_sunday": false, + "apply_monday": false, + "apply_tuesday": false, + "apply_wednesday": false, + "apply_thursday": false, + "apply_friday": false, + "apply_saturday": true, + "start_date": [ + 1, + 1 + ], + "end_date": [ + 12, + 31 + ] + } + ], + "holiday_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", + "summer_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", + "winter_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", + "schedule_type_limit": "Fractional" + }, + { + "type": "ScheduleRulesetAbridged", + "identifier": "Generic Office Cooling", + "day_schedules": [ + { + "type": "ScheduleDay", + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", + "values": [ + 26.7 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", + "values": [ + 26.7, + 25.7, + 25.0, + 24.0, + 26.7 + ], + "times": [ + [ + 0, + 0 + ], + [ + 5, + 0 + ], + [ + 6, + 0 + ], + [ + 7, + 0 + ], + [ + 22, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", + "values": [ + 26.7 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", + "values": [ + 26.7, + 25.6, + 25.0, + 24.0, + 26.7 + ], + "times": [ + [ + 0, + 0 + ], + [ + 5, + 0 + ], + [ + 6, + 0 + ], + [ + 7, + 0 + ], + [ + 22, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", + "values": [ + 26.7, + 25.7, + 25.0, + 24.0, + 26.7 + ], + "times": [ + [ + 0, + 0 + ], + [ + 5, + 0 + ], + [ + 6, + 0 + ], + [ + 7, + 0 + ], + [ + 17, + 0 + ] + ], + "interpolate": false + } ], - "timestep": 1, - "start_date": [ - 1, - 1 + "default_day_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", + "schedule_rules": [ + { + "type": "ScheduleRuleAbridged", + "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", + "apply_sunday": false, + "apply_monday": true, + "apply_tuesday": true, + "apply_wednesday": true, + "apply_thursday": true, + "apply_friday": true, + "apply_saturday": false, + "start_date": [ + 1, + 1 + ], + "end_date": [ + 12, + 31 + ] + }, + { + "type": "ScheduleRuleAbridged", + "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", + "apply_sunday": false, + "apply_monday": false, + "apply_tuesday": false, + "apply_wednesday": false, + "apply_thursday": false, + "apply_friday": false, + "apply_saturday": true, + "start_date": [ + 1, + 1 + ], + "end_date": [ + 12, + 31 + ] + } ], - "placeholder_value": 0.0, - "interpolate": false, - "schedule_type_limit": "Fractional" + "holiday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", + "summer_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", + "winter_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", + "schedule_type_limit": "Temperature" }, { "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Equipment", + "identifier": "Generic Office Activity", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", + "identifier": "OfficeMedium ACTIVITY_SCH_Default", "values": [ - 0.2307553806, - 0.288107175, - 0.2307553806 + 120.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium ACTIVITY_SCH_Default_SmrDsn", + "values": [ + 120.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium ACTIVITY_SCH_Default_WntrDsn", + "values": [ + 120.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + } + ], + "default_day_schedule": "OfficeMedium ACTIVITY_SCH_Default", + "holiday_schedule": "OfficeMedium ACTIVITY_SCH_Default", + "summer_designday_schedule": "OfficeMedium ACTIVITY_SCH_Default_SmrDsn", + "winter_designday_schedule": "OfficeMedium ACTIVITY_SCH_Default_WntrDsn", + "schedule_type_limit": "Activity Level" + }, + { + "type": "ScheduleRulesetAbridged", + "identifier": "Generic Office Lighting", + "day_schedules": [ + { + "type": "ScheduleDay", + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", + "values": [ + 0.05, + 0.04311628, + 0.05 ], "times": [ [ @@ -18630,7 +9841,7 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", "values": [ 1.0 ], @@ -18644,7 +9855,7 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", "values": [ 0.0 ], @@ -18658,14 +9869,14 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", "values": [ - 0.2307553806, - 0.381234796, - 0.476543495, - 0.3335804465, - 0.285926097, - 0.2307553806 + 0.05, + 0.08623256, + 0.25869768, + 0.12934884, + 0.04311628, + 0.05 ], "times": [ [ @@ -18697,15 +9908,18 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", "values": [ - 0.3076738408, - 0.381234796, - 0.857778291, - 0.762469592, - 0.857778291, - 0.476543495, - 0.381234796 + 0.05, + 0.1, + 0.08623256, + 0.25869768, + 0.77609304, + 0.4311628, + 0.25869768, + 0.17246512, + 0.08623256, + 0.04311628 ], "times": [ [ @@ -18713,19 +9927,19 @@ 0 ], [ - 6, + 5, 0 ], [ - 8, + 6, 0 ], [ - 12, + 7, 0 ], [ - 13, + 8, 0 ], [ @@ -18735,16 +9949,28 @@ [ 18, 0 + ], + [ + 20, + 0 + ], + [ + 22, + 0 + ], + [ + 23, + 0 ] ], "interpolate": false } ], - "default_day_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", + "default_day_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", "schedule_rules": [ { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", + "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", "apply_sunday": false, "apply_monday": true, "apply_tuesday": true, @@ -18763,7 +9989,7 @@ }, { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", "apply_sunday": false, "apply_monday": false, "apply_tuesday": false, @@ -18781,20 +10007,56 @@ ] } ], - "holiday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", - "summer_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", - "winter_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", + "holiday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", + "summer_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", + "winter_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", "schedule_type_limit": "Fractional" }, { "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Cooling", + "identifier": "Always On", + "day_schedules": [ + { + "type": "ScheduleDay", + "identifier": "Always On_Day Schedule", + "values": [ + 1.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + } + ], + "default_day_schedule": "Always On_Day Schedule", + "schedule_type_limit": "Fractional" + }, + { + "type": "ScheduleRulesetAbridged", + "identifier": "Generic Office Heating", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "values": [ + 15.6 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", "values": [ - 26.7 + 15.6 ], "times": [ [ @@ -18806,13 +10068,13 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", "values": [ - 26.7, - 25.7, - 25.0, - 24.0, - 26.7 + 15.6, + 17.6, + 19.6, + 21.0, + 15.6 ], "times": [ [ @@ -18840,27 +10102,13 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", - "values": [ - 26.7 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", "values": [ - 26.7, - 25.6, - 25.0, - 24.0, - 26.7 + 15.6, + 17.8, + 20.0, + 21.0, + 15.6 ], "times": [ [ @@ -18888,13 +10136,13 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", "values": [ - 26.7, - 25.7, - 25.0, - 24.0, - 26.7 + 15.6, + 17.8, + 20.0, + 21.0, + 15.6 ], "times": [ [ @@ -18921,11 +10169,11 @@ "interpolate": false } ], - "default_day_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", + "default_day_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", "schedule_rules": [ { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", + "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", "apply_sunday": false, "apply_monday": true, "apply_tuesday": true, @@ -18944,7 +10192,7 @@ }, { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", + "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", "apply_sunday": false, "apply_monday": false, "apply_tuesday": false, @@ -18962,33 +10210,11 @@ ] } ], - "holiday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", - "summer_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", - "winter_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", + "holiday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "summer_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", + "winter_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", "schedule_type_limit": "Temperature" }, - { - "type": "ScheduleRulesetAbridged", - "identifier": "Always On", - "day_schedules": [ - { - "type": "ScheduleDay", - "identifier": "Always On_Day Schedule", - "values": [ - 1.0 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - } - ], - "default_day_schedule": "Always On_Day Schedule", - "schedule_type_limit": "Fractional" - }, { "type": "ScheduleRulesetAbridged", "identifier": "Generic Office Occupancy", @@ -19149,50 +10375,8824 @@ "interpolate": false } ], - "default_day_schedule": "OfficeMedium BLDG_OCC_SCH_Default", - "schedule_rules": [ - { - "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium BLDG_OCC_SCH_Wkdy", - "apply_sunday": false, - "apply_monday": true, - "apply_tuesday": true, - "apply_wednesday": true, - "apply_thursday": true, - "apply_friday": true, - "apply_saturday": false, - "start_date": [ - 1, - 1 - ], - "end_date": [ - 12, - 31 - ] - }, - { - "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium BLDG_OCC_SCH_Sat", - "apply_sunday": false, - "apply_monday": false, - "apply_tuesday": false, - "apply_wednesday": false, - "apply_thursday": false, - "apply_friday": false, - "apply_saturday": true, - "start_date": [ - 1, - 1 - ], - "end_date": [ - 12, - 31 - ] - } + "default_day_schedule": "OfficeMedium BLDG_OCC_SCH_Default", + "schedule_rules": [ + { + "type": "ScheduleRuleAbridged", + "schedule_day": "OfficeMedium BLDG_OCC_SCH_Wkdy", + "apply_sunday": false, + "apply_monday": true, + "apply_tuesday": true, + "apply_wednesday": true, + "apply_thursday": true, + "apply_friday": true, + "apply_saturday": false, + "start_date": [ + 1, + 1 + ], + "end_date": [ + 12, + 31 + ] + }, + { + "type": "ScheduleRuleAbridged", + "schedule_day": "OfficeMedium BLDG_OCC_SCH_Sat", + "apply_sunday": false, + "apply_monday": false, + "apply_tuesday": false, + "apply_wednesday": false, + "apply_thursday": false, + "apply_friday": false, + "apply_saturday": true, + "start_date": [ + 1, + 1 + ], + "end_date": [ + 12, + 31 + ] + } + ], + "holiday_schedule": "OfficeMedium BLDG_OCC_SCH_Default", + "summer_designday_schedule": "OfficeMedium BLDG_OCC_SCH_SmrDsn", + "winter_designday_schedule": "OfficeMedium BLDG_OCC_SCH_WntrDsn", + "schedule_type_limit": "Fractional" + }, + { + "type": "ScheduleFixedIntervalAbridged", + "identifier": "Seasonal Tree Transmittance", + "values": [ + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.75, + 0.7497716894977169, + 0.7495433789954338, + 0.7493150684931507, + 0.7490867579908675, + 0.7488584474885844, + 0.7486301369863013, + 0.7484018264840183, + 0.7481735159817352, + 0.7479452054794521, + 0.747716894977169, + 0.7474885844748859, + 0.7472602739726028, + 0.7470319634703196, + 0.7468036529680365, + 0.7465753424657534, + 0.7463470319634703, + 0.7461187214611872, + 0.7458904109589041, + 0.745662100456621, + 0.745433789954338, + 0.7452054794520548, + 0.7449771689497717, + 0.7447488584474886, + 0.7445205479452055, + 0.7442922374429224, + 0.7440639269406393, + 0.7438356164383562, + 0.743607305936073, + 0.7433789954337899, + 0.7431506849315068, + 0.7429223744292237, + 0.7426940639269406, + 0.7424657534246575, + 0.7422374429223745, + 0.7420091324200914, + 0.7417808219178083, + 0.7415525114155251, + 0.741324200913242, + 0.7410958904109589, + 0.7408675799086758, + 0.7406392694063927, + 0.7404109589041096, + 0.7401826484018265, + 0.7399543378995433, + 0.7397260273972602, + 0.7394977168949771, + 0.7392694063926941, + 0.739041095890411, + 0.7388127853881279, + 0.7385844748858448, + 0.7383561643835617, + 0.7381278538812786, + 0.7378995433789954, + 0.7376712328767123, + 0.7374429223744292, + 0.7372146118721461, + 0.736986301369863, + 0.7367579908675799, + 0.7365296803652968, + 0.7363013698630136, + 0.7360730593607306, + 0.7358447488584475, + 0.7356164383561644, + 0.7353881278538813, + 0.7351598173515982, + 0.7349315068493151, + 0.734703196347032, + 0.7344748858447488, + 0.7342465753424657, + 0.7340182648401826, + 0.7337899543378995, + 0.7335616438356164, + 0.7333333333333333, + 0.7331050228310503, + 0.7328767123287672, + 0.732648401826484, + 0.7324200913242009, + 0.7321917808219178, + 0.7319634703196347, + 0.7317351598173516, + 0.7315068493150685, + 0.7312785388127854, + 0.7310502283105023, + 0.7308219178082191, + 0.730593607305936, + 0.7303652968036529, + 0.7301369863013698, + 0.7299086757990868, + 0.7296803652968037, + 0.7294520547945206, + 0.7292237442922375, + 0.7289954337899544, + 0.7287671232876712, + 0.7285388127853881, + 0.728310502283105, + 0.7280821917808219, + 0.7278538812785388, + 0.7276255707762557, + 0.7273972602739726, + 0.7271689497716896, + 0.7269406392694064, + 0.7267123287671233, + 0.7264840182648402, + 0.7262557077625571, + 0.726027397260274, + 0.7257990867579909, + 0.7255707762557078, + 0.7253424657534246, + 0.7251141552511415, + 0.7248858447488584, + 0.7246575342465753, + 0.7244292237442922, + 0.7242009132420091, + 0.7239726027397261, + 0.723744292237443, + 0.7235159817351599, + 0.7232876712328767, + 0.7230593607305936, + 0.7228310502283105, + 0.7226027397260274, + 0.7223744292237443, + 0.7221461187214612, + 0.7219178082191781, + 0.721689497716895, + 0.7214611872146118, + 0.7212328767123287, + 0.7210045662100457, + 0.7207762557077626, + 0.7205479452054795, + 0.7203196347031964, + 0.7200913242009133, + 0.7198630136986301, + 0.719634703196347, + 0.7194063926940639, + 0.7191780821917808, + 0.7189497716894977, + 0.7187214611872146, + 0.7184931506849315, + 0.7182648401826484, + 0.7180365296803652, + 0.7178082191780822, + 0.7175799086757991, + 0.717351598173516, + 0.7171232876712329, + 0.7168949771689498, + 0.7166666666666667, + 0.7164383561643836, + 0.7162100456621004, + 0.7159817351598173, + 0.7157534246575342, + 0.7155251141552511, + 0.715296803652968, + 0.7150684931506849, + 0.7148401826484019, + 0.7146118721461188, + 0.7143835616438357, + 0.7141552511415525, + 0.7139269406392694, + 0.7136986301369863, + 0.7134703196347032, + 0.7132420091324201, + 0.713013698630137, + 0.7127853881278539, + 0.7125570776255707, + 0.7123287671232876, + 0.7121004566210045, + 0.7118721461187214, + 0.7116438356164384, + 0.7114155251141553, + 0.7111872146118722, + 0.7109589041095891, + 0.710730593607306, + 0.7105022831050228, + 0.7102739726027397, + 0.7100456621004566, + 0.7098173515981735, + 0.7095890410958904, + 0.7093607305936073, + 0.7091324200913242, + 0.7089041095890412, + 0.708675799086758, + 0.7084474885844749, + 0.7082191780821918, + 0.7079908675799087, + 0.7077625570776256, + 0.7075342465753425, + 0.7073059360730594, + 0.7070776255707762, + 0.7068493150684931, + 0.70662100456621, + 0.7063926940639269, + 0.7061643835616438, + 0.7059360730593607, + 0.7057077625570776, + 0.7054794520547946, + 0.7052511415525115, + 0.7050228310502283, + 0.7047945205479452, + 0.7045662100456621, + 0.704337899543379, + 0.7041095890410959, + 0.7038812785388128, + 0.7036529680365297, + 0.7034246575342465, + 0.7031963470319634, + 0.7029680365296803, + 0.7027397260273973, + 0.7025114155251142, + 0.7022831050228311, + 0.702054794520548, + 0.7018264840182649, + 0.7015981735159817, + 0.7013698630136986, + 0.7011415525114155, + 0.7009132420091324, + 0.7006849315068493, + 0.7004566210045662, + 0.7002283105022831, + 0.7, + 0.6997716894977168, + 0.6995433789954338, + 0.6993150684931507, + 0.6990867579908676, + 0.6988584474885845, + 0.6986301369863014, + 0.6984018264840183, + 0.6981735159817352, + 0.697945205479452, + 0.6977168949771689, + 0.6974885844748858, + 0.6972602739726027, + 0.6970319634703196, + 0.6968036529680365, + 0.6965753424657535, + 0.6963470319634704, + 0.6961187214611873, + 0.6958904109589041, + 0.695662100456621, + 0.6954337899543379, + 0.6952054794520548, + 0.6949771689497717, + 0.6947488584474886, + 0.6945205479452055, + 0.6942922374429223, + 0.6940639269406392, + 0.6938356164383561, + 0.693607305936073, + 0.69337899543379, + 0.6931506849315069, + 0.6929223744292238, + 0.6926940639269407, + 0.6924657534246575, + 0.6922374429223744, + 0.6920091324200913, + 0.6917808219178082, + 0.6915525114155251, + 0.691324200913242, + 0.6910958904109589, + 0.6908675799086758, + 0.6906392694063928, + 0.6904109589041096, + 0.6901826484018265, + 0.6899543378995434, + 0.6897260273972603, + 0.6894977168949772, + 0.6892694063926941, + 0.689041095890411, + 0.6888127853881278, + 0.6885844748858447, + 0.6883561643835616, + 0.6881278538812785, + 0.6878995433789954, + 0.6876712328767123, + 0.6874429223744292, + 0.6872146118721462, + 0.686986301369863, + 0.6867579908675799, + 0.6865296803652968, + 0.6863013698630137, + 0.6860730593607306, + 0.6858447488584475, + 0.6856164383561644, + 0.6853881278538813, + 0.6851598173515981, + 0.684931506849315, + 0.6847031963470319, + 0.6844748858447489, + 0.6842465753424658, + 0.6840182648401827, + 0.6837899543378996, + 0.6835616438356165, + 0.6833333333333333, + 0.6831050228310502, + 0.6828767123287671, + 0.682648401826484, + 0.6824200913242009, + 0.6821917808219178, + 0.6819634703196347, + 0.6817351598173516, + 0.6815068493150684, + 0.6812785388127853, + 0.6810502283105023, + 0.6808219178082192, + 0.6805936073059361, + 0.680365296803653, + 0.6801369863013699, + 0.6799086757990868, + 0.6796803652968036, + 0.6794520547945205, + 0.6792237442922374, + 0.6789954337899543, + 0.6787671232876712, + 0.6785388127853882, + 0.6783105022831051, + 0.678082191780822, + 0.6778538812785389, + 0.6776255707762557, + 0.6773972602739726, + 0.6771689497716895, + 0.6769406392694064, + 0.6767123287671233, + 0.6764840182648402, + 0.6762557077625571, + 0.6760273972602739, + 0.6757990867579908, + 0.6755707762557077, + 0.6753424657534246, + 0.6751141552511416, + 0.6748858447488585, + 0.6746575342465754, + 0.6744292237442923, + 0.6742009132420091, + 0.673972602739726, + 0.6737442922374429, + 0.6735159817351598, + 0.6732876712328767, + 0.6730593607305936, + 0.6728310502283105, + 0.6726027397260274, + 0.6723744292237444, + 0.6721461187214612, + 0.6719178082191781, + 0.671689497716895, + 0.6714611872146119, + 0.6712328767123288, + 0.6710045662100457, + 0.6707762557077626, + 0.6705479452054794, + 0.6703196347031963, + 0.6700913242009132, + 0.6698630136986301, + 0.669634703196347, + 0.6694063926940639, + 0.6691780821917808, + 0.6689497716894978, + 0.6687214611872146, + 0.6684931506849315, + 0.6682648401826484, + 0.6680365296803653, + 0.6678082191780822, + 0.6675799086757991, + 0.667351598173516, + 0.6671232876712329, + 0.6668949771689497, + 0.6666666666666666, + 0.6664383561643835, + 0.6662100456621005, + 0.6659817351598174, + 0.6657534246575343, + 0.6655251141552512, + 0.6652968036529681, + 0.665068493150685, + 0.6648401826484018, + 0.6646118721461187, + 0.6643835616438356, + 0.6641552511415525, + 0.6639269406392694, + 0.6636986301369863, + 0.6634703196347032, + 0.66324200913242, + 0.6630136986301369, + 0.6627853881278539, + 0.6625570776255708, + 0.6623287671232877, + 0.6621004566210046, + 0.6618721461187215, + 0.6616438356164384, + 0.6614155251141552, + 0.6611872146118721, + 0.660958904109589, + 0.6607305936073059, + 0.6605022831050228, + 0.6602739726027397, + 0.6600456621004567, + 0.6598173515981736, + 0.6595890410958904, + 0.6593607305936073, + 0.6591324200913242, + 0.6589041095890411, + 0.658675799086758, + 0.6584474885844749, + 0.6582191780821918, + 0.6579908675799087, + 0.6577625570776255, + 0.6575342465753424, + 0.6573059360730593, + 0.6570776255707762, + 0.6568493150684931, + 0.6566210045662101, + 0.656392694063927, + 0.6561643835616439, + 0.6559360730593607, + 0.6557077625570776, + 0.6554794520547945, + 0.6552511415525114, + 0.6550228310502283, + 0.6547945205479452, + 0.6545662100456621, + 0.654337899543379, + 0.654109589041096, + 0.6538812785388128, + 0.6536529680365297, + 0.6534246575342466, + 0.6531963470319635, + 0.6529680365296804, + 0.6527397260273973, + 0.6525114155251142, + 0.652283105022831, + 0.6520547945205479, + 0.6518264840182648, + 0.6515981735159817, + 0.6513698630136986, + 0.6511415525114155, + 0.6509132420091324, + 0.6506849315068494, + 0.6504566210045662, + 0.6502283105022831, + 0.65, + 0.6497716894977169, + 0.6495433789954338, + 0.6493150684931507, + 0.6490867579908676, + 0.6488584474885845, + 0.6486301369863013, + 0.6484018264840182, + 0.6481735159817351, + 0.6479452054794521, + 0.647716894977169, + 0.6474885844748859, + 0.6472602739726028, + 0.6470319634703197, + 0.6468036529680365, + 0.6465753424657534, + 0.6463470319634703, + 0.6461187214611872, + 0.6458904109589041, + 0.645662100456621, + 0.6454337899543379, + 0.6452054794520548, + 0.6449771689497716, + 0.6447488584474885, + 0.6445205479452055, + 0.6442922374429224, + 0.6440639269406393, + 0.6438356164383562, + 0.6436073059360731, + 0.64337899543379, + 0.6431506849315068, + 0.6429223744292237, + 0.6426940639269406, + 0.6424657534246575, + 0.6422374429223744, + 0.6420091324200913, + 0.6417808219178083, + 0.6415525114155252, + 0.641324200913242, + 0.6410958904109589, + 0.6408675799086758, + 0.6406392694063927, + 0.6404109589041096, + 0.6401826484018265, + 0.6399543378995434, + 0.6397260273972603, + 0.6394977168949771, + 0.639269406392694, + 0.6390410958904109, + 0.6388127853881278, + 0.6385844748858447, + 0.6383561643835617, + 0.6381278538812786, + 0.6378995433789955, + 0.6376712328767123, + 0.6374429223744292, + 0.6372146118721461, + 0.636986301369863, + 0.6367579908675799, + 0.6365296803652968, + 0.6363013698630137, + 0.6360730593607306, + 0.6358447488584476, + 0.6356164383561644, + 0.6353881278538813, + 0.6351598173515982, + 0.6349315068493151, + 0.634703196347032, + 0.6344748858447489, + 0.6342465753424658, + 0.6340182648401826, + 0.6337899543378995, + 0.6335616438356164, + 0.6333333333333333, + 0.6331050228310502, + 0.6328767123287671, + 0.632648401826484, + 0.632420091324201, + 0.6321917808219178, + 0.6319634703196347, + 0.6317351598173516, + 0.6315068493150685, + 0.6312785388127854, + 0.6310502283105023, + 0.6308219178082192, + 0.630593607305936, + 0.6303652968036529, + 0.6301369863013698, + 0.6299086757990867, + 0.6296803652968037, + 0.6294520547945206, + 0.6292237442922375, + 0.6289954337899544, + 0.6287671232876713, + 0.6285388127853881, + 0.628310502283105, + 0.6280821917808219, + 0.6278538812785388, + 0.6276255707762557, + 0.6273972602739726, + 0.6271689497716895, + 0.6269406392694064, + 0.6267123287671232, + 0.6264840182648401, + 0.6262557077625571, + 0.626027397260274, + 0.6257990867579909, + 0.6255707762557078, + 0.6253424657534247, + 0.6251141552511416, + 0.6248858447488584, + 0.6246575342465753, + 0.6244292237442922, + 0.6242009132420091, + 0.623972602739726, + 0.623744292237443, + 0.6235159817351599, + 0.6232876712328768, + 0.6230593607305936, + 0.6228310502283105, + 0.6226027397260274, + 0.6223744292237443, + 0.6221461187214612, + 0.6219178082191781, + 0.621689497716895, + 0.6214611872146119, + 0.6212328767123287, + 0.6210045662100456, + 0.6207762557077625, + 0.6205479452054794, + 0.6203196347031963, + 0.6200913242009132, + 0.6198630136986302, + 0.6196347031963471, + 0.619406392694064, + 0.6191780821917808, + 0.6189497716894977, + 0.6187214611872146, + 0.6184931506849315, + 0.6182648401826484, + 0.6180365296803653, + 0.6178082191780822, + 0.6175799086757991, + 0.617351598173516, + 0.6171232876712329, + 0.6168949771689498, + 0.6166666666666667, + 0.6164383561643836, + 0.6162100456621005, + 0.6159817351598174, + 0.6157534246575342, + 0.6155251141552511, + 0.615296803652968, + 0.6150684931506849, + 0.6148401826484018, + 0.6146118721461187, + 0.6143835616438356, + 0.6141552511415524, + 0.6139269406392694, + 0.6136986301369863, + 0.6134703196347032, + 0.6132420091324201, + 0.613013698630137, + 0.6127853881278539, + 0.6125570776255708, + 0.6123287671232877, + 0.6121004566210045, + 0.6118721461187214, + 0.6116438356164384, + 0.6114155251141553, + 0.6111872146118722, + 0.6109589041095891, + 0.610730593607306, + 0.6105022831050229, + 0.6102739726027397, + 0.6100456621004566, + 0.6098173515981735, + 0.6095890410958904, + 0.6093607305936073, + 0.6091324200913242, + 0.6089041095890411, + 0.608675799086758, + 0.6084474885844748, + 0.6082191780821917, + 0.6079908675799086, + 0.6077625570776256, + 0.6075342465753425, + 0.6073059360730594, + 0.6070776255707763, + 0.6068493150684932, + 0.60662100456621, + 0.6063926940639269, + 0.6061643835616438, + 0.6059360730593607, + 0.6057077625570776, + 0.6054794520547946, + 0.6052511415525115, + 0.6050228310502284, + 0.6047945205479452, + 0.6045662100456621, + 0.604337899543379, + 0.6041095890410959, + 0.6038812785388128, + 0.6036529680365297, + 0.6034246575342466, + 0.6031963470319635, + 0.6029680365296803, + 0.6027397260273972, + 0.6025114155251141, + 0.602283105022831, + 0.6020547945205479, + 0.6018264840182648, + 0.6015981735159818, + 0.6013698630136987, + 0.6011415525114155, + 0.6009132420091324, + 0.6006849315068493, + 0.6004566210045662, + 0.6002283105022831, + 0.6, + 0.5997716894977169, + 0.5995433789954338, + 0.5993150684931507, + 0.5990867579908676, + 0.5988584474885845, + 0.5986301369863014, + 0.5984018264840183, + 0.5981735159817352, + 0.5979452054794521, + 0.597716894977169, + 0.5974885844748858, + 0.5972602739726027, + 0.5970319634703196, + 0.5968036529680365, + 0.5965753424657534, + 0.5963470319634703, + 0.5961187214611872, + 0.595890410958904, + 0.5956621004566209, + 0.5954337899543379, + 0.5952054794520548, + 0.5949771689497717, + 0.5947488584474886, + 0.5945205479452055, + 0.5942922374429224, + 0.5940639269406393, + 0.5938356164383561, + 0.593607305936073, + 0.5933789954337899, + 0.5931506849315069, + 0.5929223744292238, + 0.5926940639269407, + 0.5924657534246576, + 0.5922374429223745, + 0.5920091324200913, + 0.5917808219178082, + 0.5915525114155251, + 0.591324200913242, + 0.5910958904109589, + 0.5908675799086758, + 0.5906392694063927, + 0.5904109589041096, + 0.5901826484018264, + 0.5899543378995433, + 0.5897260273972602, + 0.5894977168949772, + 0.5892694063926941, + 0.589041095890411, + 0.5888127853881279, + 0.5885844748858448, + 0.5883561643835616, + 0.5881278538812785, + 0.5878995433789954, + 0.5876712328767123, + 0.5874429223744292, + 0.5872146118721462, + 0.5869863013698631, + 0.58675799086758, + 0.5865296803652968, + 0.5863013698630137, + 0.5860730593607306, + 0.5858447488584475, + 0.5856164383561644, + 0.5853881278538813, + 0.5851598173515982, + 0.584931506849315, + 0.5847031963470319, + 0.5844748858447488, + 0.5842465753424657, + 0.5840182648401826, + 0.5837899543378995, + 0.5835616438356164, + 0.5833333333333334, + 0.5831050228310503, + 0.5828767123287671, + 0.582648401826484, + 0.5824200913242009, + 0.5821917808219178, + 0.5819634703196347, + 0.5817351598173516, + 0.5815068493150685, + 0.5812785388127854, + 0.5810502283105023, + 0.5808219178082192, + 0.5805936073059361, + 0.580365296803653, + 0.5801369863013699, + 0.5799086757990868, + 0.5796803652968037, + 0.5794520547945206, + 0.5792237442922374, + 0.5789954337899543, + 0.5787671232876712, + 0.5785388127853881, + 0.578310502283105, + 0.5780821917808219, + 0.5778538812785388, + 0.5776255707762556, + 0.5773972602739725, + 0.5771689497716895, + 0.5769406392694064, + 0.5767123287671233, + 0.5764840182648402, + 0.5762557077625571, + 0.576027397260274, + 0.5757990867579909, + 0.5755707762557077, + 0.5753424657534246, + 0.5751141552511415, + 0.5748858447488585, + 0.5746575342465754, + 0.5744292237442923, + 0.5742009132420092, + 0.5739726027397261, + 0.5737442922374429, + 0.5735159817351598, + 0.5732876712328767, + 0.5730593607305936, + 0.5728310502283105, + 0.5726027397260274, + 0.5723744292237443, + 0.5721461187214611, + 0.571917808219178, + 0.5716894977168949, + 0.5714611872146118, + 0.5712328767123288, + 0.5710045662100457, + 0.5707762557077626, + 0.5705479452054795, + 0.5703196347031964, + 0.5700913242009132, + 0.5698630136986301, + 0.569634703196347, + 0.5694063926940639, + 0.5691780821917808, + 0.5689497716894978, + 0.5687214611872147, + 0.5684931506849316, + 0.5682648401826484, + 0.5680365296803653, + 0.5678082191780822, + 0.5675799086757991, + 0.567351598173516, + 0.5671232876712329, + 0.5668949771689498, + 0.5666666666666667, + 0.5664383561643835, + 0.5662100456621004, + 0.5659817351598173, + 0.5657534246575342, + 0.5655251141552511, + 0.565296803652968, + 0.565068493150685, + 0.5648401826484019, + 0.5646118721461187, + 0.5643835616438356, + 0.5641552511415525, + 0.5639269406392694, + 0.5636986301369863, + 0.5634703196347032, + 0.5632420091324201, + 0.563013698630137, + 0.562785388127854, + 0.5625570776255708, + 0.5623287671232877, + 0.5621004566210046, + 0.5618721461187215, + 0.5616438356164384, + 0.5614155251141553, + 0.5611872146118722, + 0.560958904109589, + 0.5607305936073059, + 0.5605022831050228, + 0.5602739726027397, + 0.5600456621004566, + 0.5598173515981735, + 0.5595890410958904, + 0.5593607305936072, + 0.5591324200913241, + 0.5589041095890411, + 0.558675799086758, + 0.5584474885844749, + 0.5582191780821918, + 0.5579908675799087, + 0.5577625570776256, + 0.5575342465753425, + 0.5573059360730593, + 0.5570776255707762, + 0.5568493150684931, + 0.5566210045662101, + 0.556392694063927, + 0.5561643835616439, + 0.5559360730593608, + 0.5557077625570777, + 0.5554794520547945, + 0.5552511415525114, + 0.5550228310502283, + 0.5547945205479452, + 0.5545662100456621, + 0.554337899543379, + 0.5541095890410959, + 0.5538812785388127, + 0.5536529680365296, + 0.5534246575342465, + 0.5531963470319634, + 0.5529680365296804, + 0.5527397260273973, + 0.5525114155251142, + 0.5522831050228311, + 0.552054794520548, + 0.5518264840182648, + 0.5515981735159817, + 0.5513698630136986, + 0.5511415525114155, + 0.5509132420091324, + 0.5506849315068494, + 0.5504566210045663, + 0.5502283105022832, + 0.55, + 0.5497716894977169, + 0.5495433789954338, + 0.5493150684931507, + 0.5490867579908676, + 0.5488584474885845, + 0.5486301369863014, + 0.5484018264840183, + 0.5481735159817351, + 0.547945205479452, + 0.5477168949771689, + 0.5474885844748858, + 0.5472602739726027, + 0.5470319634703196, + 0.5468036529680366, + 0.5465753424657535, + 0.5463470319634703, + 0.5461187214611872, + 0.5458904109589041, + 0.545662100456621, + 0.5454337899543379, + 0.5452054794520548, + 0.5449771689497717, + 0.5447488584474885, + 0.5445205479452055, + 0.5442922374429224, + 0.5440639269406393, + 0.5438356164383562, + 0.5436073059360731, + 0.54337899543379, + 0.5431506849315069, + 0.5429223744292238, + 0.5426940639269406, + 0.5424657534246575, + 0.5422374429223744, + 0.5420091324200913, + 0.5417808219178082, + 0.5415525114155251, + 0.541324200913242, + 0.5410958904109588, + 0.5408675799086757, + 0.5406392694063927, + 0.5404109589041096, + 0.5401826484018265, + 0.5399543378995434, + 0.5397260273972603, + 0.5394977168949772, + 0.539269406392694, + 0.5390410958904109, + 0.5388127853881278, + 0.5385844748858447, + 0.5383561643835617, + 0.5381278538812786, + 0.5378995433789955, + 0.5376712328767124, + 0.5374429223744293, + 0.5372146118721461, + 0.536986301369863, + 0.5367579908675799, + 0.5365296803652968, + 0.5363013698630137, + 0.5360730593607306, + 0.5358447488584475, + 0.5356164383561643, + 0.5353881278538812, + 0.5351598173515981, + 0.534931506849315, + 0.5347031963470319, + 0.5344748858447489, + 0.5342465753424658, + 0.5340182648401827, + 0.5337899543378996, + 0.5335616438356164, + 0.5333333333333333, + 0.5331050228310502, + 0.5328767123287671, + 0.532648401826484, + 0.5324200913242009, + 0.5321917808219179, + 0.5319634703196348, + 0.5317351598173516, + 0.5315068493150685, + 0.5312785388127854, + 0.5310502283105023, + 0.5308219178082192, + 0.5305936073059361, + 0.530365296803653, + 0.5301369863013699, + 0.5299086757990867, + 0.5296803652968036, + 0.5294520547945205, + 0.5292237442922374, + 0.5289954337899543, + 0.5287671232876712, + 0.5285388127853882, + 0.528310502283105, + 0.5280821917808219, + 0.5278538812785388, + 0.5276255707762557, + 0.5273972602739726, + 0.5271689497716895, + 0.5269406392694064, + 0.5267123287671233, + 0.5264840182648401, + 0.5262557077625571, + 0.526027397260274, + 0.5257990867579909, + 0.5255707762557078, + 0.5253424657534247, + 0.5251141552511416, + 0.5248858447488585, + 0.5246575342465754, + 0.5244292237442922, + 0.5242009132420091, + 0.523972602739726, + 0.5237442922374429, + 0.5235159817351598, + 0.5232876712328767, + 0.5230593607305936, + 0.5228310502283104, + 0.5226027397260273, + 0.5223744292237443, + 0.5221461187214612, + 0.5219178082191781, + 0.521689497716895, + 0.5214611872146119, + 0.5212328767123288, + 0.5210045662100456, + 0.5207762557077625, + 0.5205479452054794, + 0.5203196347031963, + 0.5200913242009133, + 0.5198630136986302, + 0.5196347031963471, + 0.519406392694064, + 0.5191780821917809, + 0.5189497716894977, + 0.5187214611872146, + 0.5184931506849315, + 0.5182648401826484, + 0.5180365296803653, + 0.5178082191780822, + 0.5175799086757991, + 0.517351598173516, + 0.5171232876712328, + 0.5168949771689497, + 0.5166666666666666, + 0.5164383561643835, + 0.5162100456621005, + 0.5159817351598174, + 0.5157534246575343, + 0.5155251141552512, + 0.515296803652968, + 0.5150684931506849, + 0.5148401826484018, + 0.5146118721461187, + 0.5143835616438356, + 0.5141552511415525, + 0.5139269406392695, + 0.5136986301369864, + 0.5134703196347032, + 0.5132420091324201, + 0.513013698630137, + 0.5127853881278539, + 0.5125570776255708, + 0.5123287671232877, + 0.5121004566210046, + 0.5118721461187214, + 0.5116438356164383, + 0.5114155251141552, + 0.5111872146118721, + 0.510958904109589, + 0.5107305936073059, + 0.5105022831050228, + 0.5102739726027398, + 0.5100456621004567, + 0.5098173515981735, + 0.5095890410958904, + 0.5093607305936073, + 0.5091324200913242, + 0.5089041095890411, + 0.508675799086758, + 0.5084474885844749, + 0.5082191780821917, + 0.5079908675799087, + 0.5077625570776256, + 0.5075342465753425, + 0.5073059360730594, + 0.5070776255707763, + 0.5068493150684932, + 0.5066210045662101, + 0.506392694063927, + 0.5061643835616438, + 0.5059360730593607, + 0.5057077625570776, + 0.5054794520547945, + 0.5052511415525114, + 0.5050228310502283, + 0.5047945205479452, + 0.504566210045662, + 0.5043378995433789, + 0.5041095890410959, + 0.5038812785388128, + 0.5036529680365297, + 0.5034246575342466, + 0.5031963470319635, + 0.5029680365296804, + 0.5027397260273972, + 0.5025114155251141, + 0.502283105022831, + 0.5020547945205479, + 0.5018264840182649, + 0.5015981735159818, + 0.5013698630136987, + 0.5011415525114156, + 0.5009132420091325, + 0.5006849315068493, + 0.5004566210045662, + 0.5002283105022831, + 0.5, + 0.4997716894977169, + 0.4995433789954338, + 0.49931506849315066, + 0.4990867579908676, + 0.4988584474885845, + 0.4986301369863014, + 0.49840182648401826, + 0.49817351598173515, + 0.49794520547945204, + 0.4977168949771689, + 0.49748858447488586, + 0.49726027397260275, + 0.49703196347031964, + 0.4968036529680365, + 0.4965753424657534, + 0.4963470319634703, + 0.49611872146118724, + 0.4958904109589041, + 0.495662100456621, + 0.4954337899543379, + 0.4952054794520548, + 0.4949771689497717, + 0.49474885844748856, + 0.4945205479452055, + 0.4942922374429224, + 0.4940639269406393, + 0.49383561643835616, + 0.49360730593607305, + 0.49337899543378994, + 0.4931506849315068, + 0.49292237442922376, + 0.49269406392694065, + 0.49246575342465754, + 0.4922374429223744, + 0.4920091324200913, + 0.4917808219178082, + 0.49155251141552514, + 0.491324200913242, + 0.4910958904109589, + 0.4908675799086758, + 0.4906392694063927, + 0.4904109589041096, + 0.49018264840182646, + 0.4899543378995434, + 0.4897260273972603, + 0.4894977168949772, + 0.48926940639269406, + 0.48904109589041095, + 0.48881278538812784, + 0.4885844748858447, + 0.48835616438356166, + 0.48812785388127855, + 0.48789954337899544, + 0.4876712328767123, + 0.4874429223744292, + 0.4872146118721461, + 0.48698630136986304, + 0.4867579908675799, + 0.4865296803652968, + 0.4863013698630137, + 0.4860730593607306, + 0.4858447488584475, + 0.48561643835616436, + 0.4853881278538813, + 0.4851598173515982, + 0.4849315068493151, + 0.48470319634703196, + 0.48447488584474885, + 0.48424657534246573, + 0.4840182648401826, + 0.48378995433789956, + 0.48356164383561645, + 0.48333333333333334, + 0.4831050228310502, + 0.4828767123287671, + 0.482648401826484, + 0.48242009132420094, + 0.4821917808219178, + 0.4819634703196347, + 0.4817351598173516, + 0.4815068493150685, + 0.4812785388127854, + 0.48105022831050226, + 0.4808219178082192, + 0.4805936073059361, + 0.480365296803653, + 0.48013698630136986, + 0.47990867579908675, + 0.47968036529680363, + 0.4794520547945205, + 0.47922374429223746, + 0.47899543378995435, + 0.47876712328767124, + 0.4785388127853881, + 0.478310502283105, + 0.4780821917808219, + 0.47785388127853884, + 0.4776255707762557, + 0.4773972602739726, + 0.4771689497716895, + 0.4769406392694064, + 0.4767123287671233, + 0.47648401826484016, + 0.4762557077625571, + 0.476027397260274, + 0.4757990867579909, + 0.47557077625570776, + 0.47534246575342465, + 0.47511415525114153, + 0.4748858447488584, + 0.47465753424657536, + 0.47442922374429225, + 0.47420091324200914, + 0.473972602739726, + 0.4737442922374429, + 0.4735159817351598, + 0.47328767123287674, + 0.4730593607305936, + 0.4728310502283105, + 0.4726027397260274, + 0.4723744292237443, + 0.47214611872146117, + 0.47191780821917806, + 0.471689497716895, + 0.4714611872146119, + 0.4712328767123288, + 0.47100456621004566, + 0.47077625570776255, + 0.47054794520547943, + 0.4703196347031963, + 0.47009132420091326, + 0.46986301369863015, + 0.46963470319634704, + 0.4694063926940639, + 0.4691780821917808, + 0.4689497716894977, + 0.46872146118721464, + 0.4684931506849315, + 0.4682648401826484, + 0.4680365296803653, + 0.4678082191780822, + 0.46757990867579907, + 0.46735159817351596, + 0.4671232876712329, + 0.4668949771689498, + 0.4666666666666667, + 0.46643835616438356, + 0.46621004566210045, + 0.46598173515981733, + 0.4657534246575342, + 0.46552511415525116, + 0.46529680365296805, + 0.46506849315068494, + 0.4648401826484018, + 0.4646118721461187, + 0.4643835616438356, + 0.46415525114155254, + 0.4639269406392694, + 0.4636986301369863, + 0.4634703196347032, + 0.4632420091324201, + 0.46301369863013697, + 0.46278538812785386, + 0.4625570776255708, + 0.4623287671232877, + 0.4621004566210046, + 0.46187214611872146, + 0.46164383561643835, + 0.46141552511415523, + 0.4611872146118721, + 0.46095890410958906, + 0.46073059360730595, + 0.46050228310502284, + 0.4602739726027397, + 0.4600456621004566, + 0.4598173515981735, + 0.45958904109589044, + 0.4593607305936073, + 0.4591324200913242, + 0.4589041095890411, + 0.458675799086758, + 0.45844748858447487, + 0.45821917808219176, + 0.4579908675799087, + 0.4577625570776256, + 0.4575342465753425, + 0.45730593607305936, + 0.45707762557077625, + 0.45684931506849313, + 0.45662100456621, + 0.45639269406392696, + 0.45616438356164385, + 0.45593607305936074, + 0.4557077625570776, + 0.4554794520547945, + 0.4552511415525114, + 0.45502283105022834, + 0.4547945205479452, + 0.4545662100456621, + 0.454337899543379, + 0.4541095890410959, + 0.45388127853881277, + 0.45365296803652966, + 0.4534246575342466, + 0.4531963470319635, + 0.4529680365296804, + 0.45273972602739726, + 0.45251141552511415, + 0.45228310502283103, + 0.4520547945205479, + 0.45182648401826486, + 0.45159817351598175, + 0.45136986301369864, + 0.4511415525114155, + 0.4509132420091324, + 0.4506849315068493, + 0.45045662100456624, + 0.4502283105022831, + 0.45, + 0.4497716894977169, + 0.4495433789954338, + 0.44931506849315067, + 0.44908675799086756, + 0.4488584474885845, + 0.4486301369863014, + 0.4484018264840183, + 0.44817351598173516, + 0.44794520547945205, + 0.44771689497716893, + 0.4474885844748858, + 0.44726027397260276, + 0.44703196347031965, + 0.44680365296803654, + 0.4465753424657534, + 0.4463470319634703, + 0.4461187214611872, + 0.4458904109589041, + 0.445662100456621, + 0.4454337899543379, + 0.4452054794520548, + 0.4449771689497717, + 0.44474885844748857, + 0.44452054794520546, + 0.4442922374429224, + 0.4440639269406393, + 0.4438356164383562, + 0.44360730593607306, + 0.44337899543378995, + 0.44315068493150683, + 0.4429223744292237, + 0.44269406392694066, + 0.44246575342465755, + 0.44223744292237444, + 0.4420091324200913, + 0.4417808219178082, + 0.4415525114155251, + 0.441324200913242, + 0.4410958904109589, + 0.4408675799086758, + 0.4406392694063927, + 0.4404109589041096, + 0.44018264840182647, + 0.43995433789954336, + 0.4397260273972603, + 0.4394977168949772, + 0.4392694063926941, + 0.43904109589041096, + 0.43881278538812785, + 0.43858447488584473, + 0.4383561643835616, + 0.43812785388127856, + 0.43789954337899545, + 0.43767123287671234, + 0.4374429223744292, + 0.4372146118721461, + 0.436986301369863, + 0.4367579908675799, + 0.4365296803652968, + 0.4363013698630137, + 0.4360730593607306, + 0.4358447488584475, + 0.43561643835616437, + 0.43538812785388126, + 0.4351598173515982, + 0.4349315068493151, + 0.434703196347032, + 0.43447488584474886, + 0.43424657534246575, + 0.43401826484018263, + 0.4337899543378995, + 0.43356164383561646, + 0.43333333333333335, + 0.43310502283105023, + 0.4328767123287671, + 0.432648401826484, + 0.4324200913242009, + 0.4321917808219178, + 0.4319634703196347, + 0.4317351598173516, + 0.4315068493150685, + 0.4312785388127854, + 0.43105022831050227, + 0.43082191780821916, + 0.4305936073059361, + 0.430365296803653, + 0.4301369863013699, + 0.42990867579908676, + 0.42968036529680365, + 0.42945205479452053, + 0.4292237442922374, + 0.42899543378995436, + 0.42876712328767125, + 0.42853881278538813, + 0.428310502283105, + 0.4280821917808219, + 0.4278538812785388, + 0.4276255707762557, + 0.4273972602739726, + 0.4271689497716895, + 0.4269406392694064, + 0.4267123287671233, + 0.42648401826484017, + 0.42625570776255706, + 0.426027397260274, + 0.4257990867579909, + 0.42557077625570777, + 0.42534246575342466, + 0.42511415525114155, + 0.42488584474885843, + 0.4246575342465753, + 0.42442922374429226, + 0.42420091324200915, + 0.42397260273972603, + 0.4237442922374429, + 0.4235159817351598, + 0.4232876712328767, + 0.4230593607305936, + 0.4228310502283105, + 0.4226027397260274, + 0.4223744292237443, + 0.4221461187214612, + 0.42191780821917807, + 0.42168949771689496, + 0.4214611872146119, + 0.4212328767123288, + 0.42100456621004567, + 0.42077625570776256, + 0.42054794520547945, + 0.42031963470319633, + 0.4200913242009132, + 0.41986301369863016, + 0.41963470319634705, + 0.41940639269406393, + 0.4191780821917808, + 0.4189497716894977, + 0.4187214611872146, + 0.4184931506849315, + 0.4182648401826484, + 0.4180365296803653, + 0.4178082191780822, + 0.4175799086757991, + 0.41735159817351597, + 0.41712328767123286, + 0.4168949771689498, + 0.4166666666666667, + 0.41643835616438357, + 0.41621004566210046, + 0.41598173515981735, + 0.41575342465753423, + 0.4155251141552511, + 0.41529680365296806, + 0.41506849315068495, + 0.41484018264840183, + 0.4146118721461187, + 0.4143835616438356, + 0.4141552511415525, + 0.4139269406392694, + 0.4136986301369863, + 0.4134703196347032, + 0.4132420091324201, + 0.413013698630137, + 0.41278538812785387, + 0.41255707762557076, + 0.4123287671232877, + 0.4121004566210046, + 0.41187214611872147, + 0.41164383561643836, + 0.41141552511415524, + 0.41118721461187213, + 0.410958904109589, + 0.41073059360730596, + 0.41050228310502285, + 0.41027397260273973, + 0.4100456621004566, + 0.4098173515981735, + 0.4095890410958904, + 0.4093607305936073, + 0.4091324200913242, + 0.4089041095890411, + 0.408675799086758, + 0.4084474885844749, + 0.40821917808219177, + 0.40799086757990866, + 0.4077625570776256, + 0.4075342465753425, + 0.40730593607305937, + 0.40707762557077626, + 0.40684931506849314, + 0.40662100456621003, + 0.4063926940639269, + 0.40616438356164386, + 0.40593607305936075, + 0.40570776255707763, + 0.4054794520547945, + 0.4052511415525114, + 0.4050228310502283, + 0.4047945205479452, + 0.4045662100456621, + 0.404337899543379, + 0.4041095890410959, + 0.4038812785388128, + 0.40365296803652967, + 0.40342465753424656, + 0.4031963470319635, + 0.4029680365296804, + 0.40273972602739727, + 0.40251141552511416, + 0.40228310502283104, + 0.40205479452054793, + 0.4018264840182648, + 0.40159817351598176, + 0.40136986301369865, + 0.40114155251141553, + 0.4009132420091324, + 0.4006849315068493, + 0.4004566210045662, + 0.4002283105022831, + 0.4, + 0.3997716894977169, + 0.3995433789954338, + 0.3993150684931507, + 0.39908675799086757, + 0.39885844748858446, + 0.39863013698630134, + 0.3984018264840183, + 0.39817351598173517, + 0.39794520547945206, + 0.39771689497716894, + 0.39748858447488583, + 0.3972602739726027, + 0.39703196347031966, + 0.39680365296803655, + 0.39657534246575343, + 0.3963470319634703, + 0.3961187214611872, + 0.3958904109589041, + 0.395662100456621, + 0.3954337899543379, + 0.3952054794520548, + 0.3949771689497717, + 0.3947488584474886, + 0.39452054794520547, + 0.39429223744292236, + 0.39406392694063924, + 0.3938356164383562, + 0.39360730593607307, + 0.39337899543378996, + 0.39315068493150684, + 0.39292237442922373, + 0.3926940639269406, + 0.39246575342465756, + 0.39223744292237445, + 0.39200913242009133, + 0.3917808219178082, + 0.3915525114155251, + 0.391324200913242, + 0.3910958904109589, + 0.3908675799086758, + 0.3906392694063927, + 0.3904109589041096, + 0.3901826484018265, + 0.38995433789954337, + 0.38972602739726026, + 0.38949771689497714, + 0.3892694063926941, + 0.38904109589041097, + 0.38881278538812786, + 0.38858447488584474, + 0.38835616438356163, + 0.3881278538812785, + 0.38789954337899546, + 0.38767123287671235, + 0.38744292237442923, + 0.3872146118721461, + 0.386986301369863, + 0.3867579908675799, + 0.3865296803652968, + 0.3863013698630137, + 0.3860730593607306, + 0.3858447488584475, + 0.3856164383561644, + 0.38538812785388127, + 0.38515981735159815, + 0.38493150684931504, + 0.384703196347032, + 0.38447488584474887, + 0.38424657534246576, + 0.38401826484018264, + 0.38378995433789953, + 0.3835616438356164, + 0.38333333333333336, + 0.38310502283105025, + 0.38287671232876713, + 0.382648401826484, + 0.3824200913242009, + 0.3821917808219178, + 0.3819634703196347, + 0.3817351598173516, + 0.3815068493150685, + 0.3812785388127854, + 0.3810502283105023, + 0.38082191780821917, + 0.38059360730593605, + 0.38036529680365294, + 0.3801369863013699, + 0.37990867579908677, + 0.37968036529680366, + 0.37945205479452054, + 0.37922374429223743, + 0.3789954337899543, + 0.37876712328767126, + 0.37853881278538815, + 0.37831050228310503, + 0.3780821917808219, + 0.3778538812785388, + 0.3776255707762557, + 0.3773972602739726, + 0.3771689497716895, + 0.3769406392694064, + 0.3767123287671233, + 0.3764840182648402, + 0.37625570776255707, + 0.37602739726027395, + 0.37579908675799084, + 0.3755707762557078, + 0.37534246575342467, + 0.37511415525114156, + 0.37488584474885844, + 0.37465753424657533, + 0.3744292237442922, + 0.37420091324200916, + 0.37397260273972605, + 0.37374429223744293, + 0.3735159817351598, + 0.3732876712328767, + 0.3730593607305936, + 0.3728310502283105, + 0.3726027397260274, + 0.3723744292237443, + 0.3721461187214612, + 0.3719178082191781, + 0.37168949771689497, + 0.37146118721461185, + 0.37123287671232874, + 0.3710045662100457, + 0.37077625570776257, + 0.37054794520547946, + 0.37031963470319634, + 0.37009132420091323, + 0.3698630136986301, + 0.36963470319634706, + 0.36940639269406395, + 0.36917808219178083, + 0.3689497716894977, + 0.3687214611872146, + 0.3684931506849315, + 0.3682648401826484, + 0.3680365296803653, + 0.3678082191780822, + 0.3675799086757991, + 0.367351598173516, + 0.36712328767123287, + 0.36689497716894975, + 0.36666666666666664, + 0.3664383561643836, + 0.36621004566210047, + 0.36598173515981736, + 0.36575342465753424, + 0.36552511415525113, + 0.365296803652968, + 0.36506849315068496, + 0.36484018264840185, + 0.36461187214611873, + 0.3643835616438356, + 0.3641552511415525, + 0.3639269406392694, + 0.3636986301369863, + 0.3634703196347032, + 0.3632420091324201, + 0.363013698630137, + 0.3627853881278539, + 0.36255707762557077, + 0.36232876712328765, + 0.36210045662100454, + 0.3618721461187215, + 0.36164383561643837, + 0.36141552511415526, + 0.36118721461187214, + 0.36095890410958903, + 0.3607305936073059, + 0.36050228310502286, + 0.36027397260273974, + 0.36004566210045663, + 0.3598173515981735, + 0.3595890410958904, + 0.3593607305936073, + 0.3591324200913242, + 0.3589041095890411, + 0.358675799086758, + 0.3584474885844749, + 0.3582191780821918, + 0.35799086757990867, + 0.35776255707762555, + 0.35753424657534244, + 0.3573059360730594, + 0.35707762557077627, + 0.35684931506849316, + 0.35662100456621004, + 0.35639269406392693, + 0.3561643835616438, + 0.35593607305936076, + 0.35570776255707764, + 0.35547945205479453, + 0.3552511415525114, + 0.3550228310502283, + 0.3547945205479452, + 0.3545662100456621, + 0.354337899543379, + 0.3541095890410959, + 0.3538812785388128, + 0.3536529680365297, + 0.35342465753424657, + 0.35319634703196345, + 0.35296803652968034, + 0.3527397260273973, + 0.35251141552511417, + 0.35228310502283106, + 0.35205479452054794, + 0.35182648401826483, + 0.3515981735159817, + 0.35136986301369866, + 0.35114155251141554, + 0.35091324200913243, + 0.3506849315068493, + 0.3504566210045662, + 0.3502283105022831, + 0.35, + 0.3497716894977169, + 0.3495433789954338, + 0.3493150684931507, + 0.3490867579908676, + 0.34885844748858447, + 0.34863013698630135, + 0.34840182648401824, + 0.3481735159817352, + 0.34794520547945207, + 0.34771689497716896, + 0.34748858447488584, + 0.34726027397260273, + 0.3470319634703196, + 0.3468036529680365, + 0.34657534246575344, + 0.34634703196347033, + 0.3461187214611872, + 0.3458904109589041, + 0.345662100456621, + 0.3454337899543379, + 0.3452054794520548, + 0.3449771689497717, + 0.3447488584474886, + 0.3445205479452055, + 0.34429223744292237, + 0.34406392694063925, + 0.34383561643835614, + 0.3436073059360731, + 0.34337899543378997, + 0.34315068493150686, + 0.34292237442922374, + 0.34269406392694063, + 0.3424657534246575, + 0.3422374429223744, + 0.34200913242009134, + 0.34178082191780823, + 0.3415525114155251, + 0.341324200913242, + 0.3410958904109589, + 0.3408675799086758, + 0.3406392694063927, + 0.3404109589041096, + 0.3401826484018265, + 0.3399543378995434, + 0.33972602739726027, + 0.33949771689497715, + 0.33926940639269404, + 0.339041095890411, + 0.33881278538812787, + 0.33858447488584476, + 0.33835616438356164, + 0.33812785388127853, + 0.3378995433789954, + 0.3376712328767123, + 0.33744292237442924, + 0.33721461187214613, + 0.336986301369863, + 0.3367579908675799, + 0.3365296803652968, + 0.3363013698630137, + 0.3360730593607306, + 0.3358447488584475, + 0.3356164383561644, + 0.3353881278538813, + 0.33515981735159817, + 0.33493150684931505, + 0.33470319634703194, + 0.3344748858447489, + 0.33424657534246577, + 0.33401826484018265, + 0.33378995433789954, + 0.33356164383561643, + 0.3333333333333333, + 0.3331050228310502, + 0.33287671232876714, + 0.33264840182648403, + 0.3324200913242009, + 0.3321917808219178, + 0.3319634703196347, + 0.3317351598173516, + 0.3315068493150685, + 0.3312785388127854, + 0.3310502283105023, + 0.3308219178082192, + 0.33059360730593607, + 0.33036529680365295, + 0.33013698630136984, + 0.3299086757990868, + 0.32968036529680367, + 0.32945205479452055, + 0.32922374429223744, + 0.32899543378995433, + 0.3287671232876712, + 0.3285388127853881, + 0.32831050228310504, + 0.32808219178082193, + 0.3278538812785388, + 0.3276255707762557, + 0.3273972602739726, + 0.3271689497716895, + 0.3269406392694064, + 0.3267123287671233, + 0.3264840182648402, + 0.3262557077625571, + 0.32602739726027397, + 0.32579908675799085, + 0.32557077625570774, + 0.3253424657534247, + 0.32511415525114157, + 0.32488584474885845, + 0.32465753424657534, + 0.32442922374429223, + 0.3242009132420091, + 0.323972602739726, + 0.32374429223744294, + 0.32351598173515983, + 0.3232876712328767, + 0.3230593607305936, + 0.3228310502283105, + 0.3226027397260274, + 0.3223744292237443, + 0.3221461187214612, + 0.3219178082191781, + 0.321689497716895, + 0.32146118721461187, + 0.32123287671232875, + 0.32100456621004564, + 0.3207762557077626, + 0.32054794520547947, + 0.32031963470319635, + 0.32009132420091324, + 0.3198630136986301, + 0.319634703196347, + 0.3194063926940639, + 0.31917808219178084, + 0.31894977168949773, + 0.3187214611872146, + 0.3184931506849315, + 0.3182648401826484, + 0.3180365296803653, + 0.3178082191780822, + 0.3175799086757991, + 0.317351598173516, + 0.3171232876712329, + 0.31689497716894977, + 0.31666666666666665, + 0.31643835616438354, + 0.3162100456621005, + 0.31598173515981737, + 0.31575342465753425, + 0.31552511415525114, + 0.315296803652968, + 0.3150684931506849, + 0.3148401826484018, + 0.31461187214611874, + 0.31438356164383563, + 0.3141552511415525, + 0.3139269406392694, + 0.3136986301369863, + 0.3134703196347032, + 0.3132420091324201, + 0.313013698630137, + 0.3127853881278539, + 0.3125570776255708, + 0.31232876712328766, + 0.31210045662100455, + 0.31187214611872144, + 0.3116438356164384, + 0.31141552511415527, + 0.31118721461187215, + 0.31095890410958904, + 0.3107305936073059, + 0.3105022831050228, + 0.3102739726027397, + 0.31004566210045664, + 0.30981735159817353, + 0.3095890410958904, + 0.3093607305936073, + 0.3091324200913242, + 0.3089041095890411, + 0.308675799086758, + 0.3084474885844749, + 0.3082191780821918, + 0.3079908675799087, + 0.30776255707762556, + 0.30753424657534245, + 0.30730593607305934, + 0.3070776255707763, + 0.30684931506849317, + 0.30662100456621005, + 0.30639269406392694, + 0.3061643835616438, + 0.3059360730593607, + 0.3057077625570776, + 0.30547945205479454, + 0.30525114155251143, + 0.3050228310502283, + 0.3047945205479452, + 0.3045662100456621, + 0.304337899543379, + 0.3041095890410959, + 0.3038812785388128, + 0.3036529680365297, + 0.3034246575342466, + 0.30319634703196346, + 0.30296803652968035, + 0.30273972602739724, + 0.3025114155251142, + 0.30228310502283107, + 0.30205479452054795, + 0.30182648401826484, + 0.3015981735159817, + 0.3013698630136986, + 0.3011415525114155, + 0.30091324200913244, + 0.30068493150684933, + 0.3004566210045662, + 0.3002283105022831, + 0.3, + 0.2997716894977169, + 0.29954337899543376, + 0.2993150684931507, + 0.2990867579908676, + 0.2988584474885845, + 0.29863013698630136, + 0.29840182648401825, + 0.29817351598173514, + 0.2979452054794521, + 0.29771689497716897, + 0.29748858447488585, + 0.29726027397260274, + 0.2970319634703196, + 0.2968036529680365, + 0.2965753424657534, + 0.29634703196347034, + 0.29611872146118723, + 0.2958904109589041, + 0.295662100456621, + 0.2954337899543379, + 0.2952054794520548, + 0.29497716894977166, + 0.2947488584474886, + 0.2945205479452055, + 0.2942922374429224, + 0.29406392694063926, + 0.29383561643835615, + 0.29360730593607304, + 0.29337899543379, + 0.29315068493150687, + 0.29292237442922375, + 0.29269406392694064, + 0.2924657534246575, + 0.2922374429223744, + 0.2920091324200913, + 0.29178082191780824, + 0.29155251141552513, + 0.291324200913242, + 0.2910958904109589, + 0.2908675799086758, + 0.2906392694063927, + 0.29041095890410956, + 0.2901826484018265, + 0.2899543378995434, + 0.2897260273972603, + 0.28949771689497716, + 0.28926940639269405, + 0.28904109589041094, + 0.2888127853881279, + 0.28858447488584477, + 0.28835616438356165, + 0.28812785388127854, + 0.2878995433789954, + 0.2876712328767123, + 0.2874429223744292, + 0.28721461187214614, + 0.28698630136986303, + 0.2867579908675799, + 0.2865296803652968, + 0.2863013698630137, + 0.2860730593607306, + 0.28584474885844746, + 0.2856164383561644, + 0.2853881278538813, + 0.2851598173515982, + 0.28493150684931506, + 0.28470319634703195, + 0.28447488584474884, + 0.2842465753424658, + 0.28401826484018267, + 0.28378995433789955, + 0.28356164383561644, + 0.2833333333333333, + 0.2831050228310502, + 0.2828767123287671, + 0.28264840182648404, + 0.28242009132420093, + 0.2821917808219178, + 0.2819634703196347, + 0.2817351598173516, + 0.2815068493150685, + 0.28127853881278536, + 0.2810502283105023, + 0.2808219178082192, + 0.2805936073059361, + 0.28036529680365296, + 0.28013698630136985, + 0.27990867579908674, + 0.2796803652968037, + 0.27945205479452057, + 0.27922374429223745, + 0.27899543378995434, + 0.2787671232876712, + 0.2785388127853881, + 0.278310502283105, + 0.27808219178082194, + 0.27785388127853883, + 0.2776255707762557, + 0.2773972602739726, + 0.2771689497716895, + 0.2769406392694064, + 0.27671232876712326, + 0.2764840182648402, + 0.2762557077625571, + 0.276027397260274, + 0.27579908675799086, + 0.27557077625570775, + 0.27534246575342464, + 0.2751141552511416, + 0.27488584474885847, + 0.27465753424657535, + 0.27442922374429224, + 0.2742009132420091, + 0.273972602739726, + 0.2737442922374429, + 0.27351598173515984, + 0.2732876712328767, + 0.2730593607305936, + 0.2728310502283105, + 0.2726027397260274, + 0.2723744292237443, + 0.27214611872146116, + 0.2719178082191781, + 0.271689497716895, + 0.2714611872146119, + 0.27123287671232876, + 0.27100456621004565, + 0.27077625570776254, + 0.2705479452054795, + 0.27031963470319637, + 0.27009132420091325, + 0.26986301369863014, + 0.269634703196347, + 0.2694063926940639, + 0.2691780821917808, + 0.26894977168949774, + 0.2687214611872146, + 0.2684931506849315, + 0.2682648401826484, + 0.2680365296803653, + 0.2678082191780822, + 0.26757990867579906, + 0.267351598173516, + 0.2671232876712329, + 0.2668949771689498, + 0.26666666666666666, + 0.26643835616438355, + 0.26621004566210044, + 0.2659817351598174, + 0.26575342465753427, + 0.26552511415525115, + 0.26529680365296804, + 0.2650684931506849, + 0.2648401826484018, + 0.2646118721461187, + 0.26438356164383564, + 0.2641552511415525, + 0.2639269406392694, + 0.2636986301369863, + 0.2634703196347032, + 0.2632420091324201, + 0.26301369863013696, + 0.2627853881278539, + 0.2625570776255708, + 0.2623287671232877, + 0.26210045662100456, + 0.26187214611872145, + 0.26164383561643834, + 0.2614155251141553, + 0.26118721461187216, + 0.26095890410958905, + 0.26073059360730594, + 0.2605022831050228, + 0.2602739726027397, + 0.2600456621004566, + 0.25981735159817354, + 0.2595890410958904, + 0.2593607305936073, + 0.2591324200913242, + 0.2589041095890411, + 0.258675799086758, + 0.25844748858447486, + 0.2582191780821918, + 0.2579908675799087, + 0.2577625570776256, + 0.25753424657534246, + 0.25730593607305935, + 0.25707762557077624, + 0.2568493150684932, + 0.25662100456621006, + 0.25639269406392695, + 0.25616438356164384, + 0.2559360730593607, + 0.2557077625570776, + 0.2554794520547945, + 0.25525114155251144, + 0.2550228310502283, + 0.2547945205479452, + 0.2545662100456621, + 0.254337899543379, + 0.2541095890410959, + 0.25388127853881276, + 0.2536529680365297, + 0.2534246575342466, + 0.2531963470319635, + 0.25296803652968036, + 0.25273972602739725, + 0.25251141552511414, + 0.2522831050228311, + 0.25205479452054796, + 0.25182648401826485, + 0.25159817351598174, + 0.2513698630136986, + 0.2511415525114155, + 0.2509132420091324, + 0.25068493150684934, + 0.2504566210045662, + 0.2502283105022831, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.25, + 0.2502283105022831, + 0.2504566210045662, + 0.25068493150684934, + 0.2509132420091324, + 0.2511415525114155, + 0.2513698630136986, + 0.25159817351598174, + 0.25182648401826485, + 0.25205479452054796, + 0.252283105022831, + 0.25251141552511414, + 0.25273972602739725, + 0.25296803652968036, + 0.2531963470319635, + 0.2534246575342466, + 0.2536529680365297, + 0.25388127853881276, + 0.2541095890410959, + 0.254337899543379, + 0.2545662100456621, + 0.2547945205479452, + 0.2550228310502283, + 0.25525114155251144, + 0.2554794520547945, + 0.2557077625570776, + 0.2559360730593607, + 0.25616438356164384, + 0.25639269406392695, + 0.25662100456621006, + 0.2568493150684932, + 0.25707762557077624, + 0.25730593607305935, + 0.25753424657534246, + 0.2577625570776256, + 0.2579908675799087, + 0.2582191780821918, + 0.25844748858447486, + 0.258675799086758, + 0.2589041095890411, + 0.2591324200913242, + 0.2593607305936073, + 0.2595890410958904, + 0.25981735159817354, + 0.2600456621004566, + 0.2602739726027397, + 0.2605022831050228, + 0.26073059360730594, + 0.26095890410958905, + 0.26118721461187216, + 0.2614155251141552, + 0.26164383561643834, + 0.26187214611872145, + 0.26210045662100456, + 0.2623287671232877, + 0.2625570776255708, + 0.2627853881278539, + 0.26301369863013696, + 0.2632420091324201, + 0.2634703196347032, + 0.2636986301369863, + 0.2639269406392694, + 0.2641552511415525, + 0.26438356164383564, + 0.2646118721461187, + 0.2648401826484018, + 0.2650684931506849, + 0.26529680365296804, + 0.26552511415525115, + 0.26575342465753427, + 0.2659817351598174, + 0.26621004566210044, + 0.26643835616438355, + 0.26666666666666666, + 0.2668949771689498, + 0.2671232876712329, + 0.267351598173516, + 0.26757990867579906, + 0.2678082191780822, + 0.2680365296803653, + 0.2682648401826484, + 0.2684931506849315, + 0.2687214611872146, + 0.26894977168949774, + 0.2691780821917808, + 0.2694063926940639, + 0.269634703196347, + 0.26986301369863014, + 0.27009132420091325, + 0.27031963470319637, + 0.2705479452054794, + 0.27077625570776254, + 0.27100456621004565, + 0.27123287671232876, + 0.2714611872146119, + 0.271689497716895, + 0.2719178082191781, + 0.2721461187214612, + 0.2723744292237443, + 0.2726027397260274, + 0.2728310502283105, + 0.2730593607305936, + 0.2732876712328767, + 0.27351598173515984, + 0.2737442922374429, + 0.273972602739726, + 0.2742009132420091, + 0.27442922374429224, + 0.27465753424657535, + 0.27488584474885847, + 0.2751141552511416, + 0.27534246575342464, + 0.27557077625570775, + 0.27579908675799086, + 0.276027397260274, + 0.2762557077625571, + 0.2764840182648402, + 0.27671232876712326, + 0.2769406392694064, + 0.2771689497716895, + 0.2773972602739726, + 0.2776255707762557, + 0.27785388127853883, + 0.27808219178082194, + 0.278310502283105, + 0.2785388127853881, + 0.2787671232876712, + 0.27899543378995434, + 0.27922374429223745, + 0.27945205479452057, + 0.2796803652968036, + 0.27990867579908674, + 0.28013698630136985, + 0.28036529680365296, + 0.2805936073059361, + 0.2808219178082192, + 0.2810502283105023, + 0.2812785388127854, + 0.2815068493150685, + 0.2817351598173516, + 0.2819634703196347, + 0.2821917808219178, + 0.28242009132420093, + 0.28264840182648404, + 0.2828767123287671, + 0.2831050228310502, + 0.2833333333333333, + 0.28356164383561644, + 0.28378995433789955, + 0.28401826484018267, + 0.2842465753424658, + 0.28447488584474884, + 0.28470319634703195, + 0.28493150684931506, + 0.2851598173515982, + 0.2853881278538813, + 0.2856164383561644, + 0.28584474885844746, + 0.2860730593607306, + 0.2863013698630137, + 0.2865296803652968, + 0.2867579908675799, + 0.28698630136986303, + 0.28721461187214614, + 0.2874429223744292, + 0.2876712328767123, + 0.2878995433789954, + 0.28812785388127854, + 0.28835616438356165, + 0.28858447488584477, + 0.2888127853881278, + 0.28904109589041094, + 0.28926940639269405, + 0.28949771689497716, + 0.2897260273972603, + 0.2899543378995434, + 0.2901826484018265, + 0.2904109589041096, + 0.2906392694063927, + 0.2908675799086758, + 0.2910958904109589, + 0.291324200913242, + 0.29155251141552513, + 0.29178082191780824, + 0.2920091324200913, + 0.2922374429223744, + 0.2924657534246575, + 0.29269406392694064, + 0.29292237442922375, + 0.29315068493150687, + 0.29337899543379, + 0.29360730593607304, + 0.29383561643835615, + 0.29406392694063926, + 0.2942922374429224, + 0.2945205479452055, + 0.2947488584474886, + 0.29497716894977166, + 0.2952054794520548, + 0.2954337899543379, + 0.295662100456621, + 0.2958904109589041, + 0.29611872146118723, + 0.29634703196347034, + 0.29657534246575346, + 0.2968036529680365, + 0.2970319634703196, + 0.29726027397260274, + 0.29748858447488585, + 0.29771689497716897, + 0.297945205479452, + 0.29817351598173514, + 0.29840182648401825, + 0.29863013698630136, + 0.2988584474885845, + 0.2990867579908676, + 0.2993150684931507, + 0.2995433789954338, + 0.2997716894977169, + 0.3, + 0.3002283105022831, + 0.3004566210045662, + 0.30068493150684933, + 0.30091324200913244, + 0.3011415525114155, + 0.3013698630136986, + 0.3015981735159817, + 0.30182648401826484, + 0.30205479452054795, + 0.30228310502283107, + 0.3025114155251142, + 0.30273972602739724, + 0.30296803652968035, + 0.30319634703196346, + 0.3034246575342466, + 0.3036529680365297, + 0.3038812785388128, + 0.30410958904109586, + 0.304337899543379, + 0.3045662100456621, + 0.3047945205479452, + 0.3050228310502283, + 0.30525114155251143, + 0.30547945205479454, + 0.30570776255707766, + 0.3059360730593607, + 0.3061643835616438, + 0.30639269406392694, + 0.30662100456621005, + 0.30684931506849317, + 0.3070776255707762, + 0.30730593607305934, + 0.30753424657534245, + 0.30776255707762556, + 0.3079908675799087, + 0.3082191780821918, + 0.3084474885844749, + 0.308675799086758, + 0.3089041095890411, + 0.3091324200913242, + 0.3093607305936073, + 0.3095890410958904, + 0.30981735159817353, + 0.31004566210045664, + 0.3102739726027397, + 0.3105022831050228, + 0.3107305936073059, + 0.31095890410958904, + 0.31118721461187215, + 0.31141552511415527, + 0.3116438356164384, + 0.31187214611872144, + 0.31210045662100455, + 0.31232876712328766, + 0.3125570776255708, + 0.3127853881278539, + 0.313013698630137, + 0.31324200913242006, + 0.3134703196347032, + 0.3136986301369863, + 0.3139269406392694, + 0.3141552511415525, + 0.31438356164383563, + 0.31461187214611874, + 0.31484018264840186, + 0.3150684931506849, + 0.315296803652968, + 0.31552511415525114, + 0.31575342465753425, + 0.31598173515981737, + 0.3162100456621004, + 0.31643835616438354, + 0.31666666666666665, + 0.31689497716894977, + 0.3171232876712329, + 0.317351598173516, + 0.3175799086757991, + 0.3178082191780822, + 0.3180365296803653, + 0.3182648401826484, + 0.3184931506849315, + 0.3187214611872146, + 0.31894977168949773, + 0.3191780821917808, + 0.3194063926940639, + 0.319634703196347, + 0.3198630136986301, + 0.32009132420091324, + 0.32031963470319635, + 0.32054794520547947, + 0.3207762557077626, + 0.3210045662100457, + 0.32123287671232875, + 0.32146118721461187, + 0.321689497716895, + 0.3219178082191781, + 0.3221461187214612, + 0.32237442922374426, + 0.3226027397260274, + 0.3228310502283105, + 0.3230593607305936, + 0.3232876712328767, + 0.32351598173515983, + 0.32374429223744294, + 0.32397260273972606, + 0.3242009132420091, + 0.32442922374429223, + 0.32465753424657534, + 0.32488584474885845, + 0.32511415525114157, + 0.3253424657534246, + 0.32557077625570774, + 0.32579908675799085, + 0.32602739726027397, + 0.3262557077625571, + 0.3264840182648402, + 0.3267123287671233, + 0.3269406392694064, + 0.32716894977168953, + 0.3273972602739726, + 0.3276255707762557, + 0.3278538812785388, + 0.32808219178082193, + 0.32831050228310504, + 0.3285388127853881, + 0.3287671232876712, + 0.32899543378995433, + 0.32922374429223744, + 0.32945205479452055, + 0.32968036529680367, + 0.3299086757990868, + 0.3301369863013699, + 0.33036529680365295, + 0.33059360730593607, + 0.3308219178082192, + 0.3310502283105023, + 0.3312785388127854, + 0.33150684931506846, + 0.3317351598173516, + 0.3319634703196347, + 0.3321917808219178, + 0.3324200913242009, + 0.33264840182648403, + 0.33287671232876714, + 0.33310502283105026, + 0.3333333333333333, + 0.33356164383561643, + 0.33378995433789954, + 0.33401826484018265, + 0.33424657534246577, + 0.3344748858447488, + 0.33470319634703194, + 0.33493150684931505, + 0.33515981735159817, + 0.3353881278538813, + 0.3356164383561644, + 0.3358447488584475, + 0.3360730593607306, + 0.33630136986301373, + 0.3365296803652968, + 0.3367579908675799, + 0.336986301369863, + 0.33721461187214613, + 0.33744292237442924, + 0.3376712328767123, + 0.3378995433789954, + 0.33812785388127853, + 0.33835616438356164, + 0.33858447488584476, + 0.33881278538812787, + 0.339041095890411, + 0.3392694063926941, + 0.33949771689497715, + 0.33972602739726027, + 0.3399543378995434, + 0.3401826484018265, + 0.3404109589041096, + 0.34063926940639266, + 0.3408675799086758, + 0.3410958904109589, + 0.341324200913242, + 0.3415525114155251, + 0.34178082191780823, + 0.34200913242009134, + 0.34223744292237446, + 0.3424657534246575, + 0.34269406392694063, + 0.34292237442922374, + 0.34315068493150686, + 0.34337899543378997, + 0.343607305936073, + 0.34383561643835614, + 0.34406392694063925, + 0.34429223744292237, + 0.3445205479452055, + 0.3447488584474886, + 0.3449771689497717, + 0.3452054794520548, + 0.34543378995433793, + 0.345662100456621, + 0.3458904109589041, + 0.3461187214611872, + 0.34634703196347033, + 0.34657534246575344, + 0.3468036529680365, + 0.3470319634703196, + 0.34726027397260273, + 0.34748858447488584, + 0.34771689497716896, + 0.34794520547945207, + 0.3481735159817352, + 0.3484018264840183, + 0.34863013698630135, + 0.34885844748858447, + 0.3490867579908676, + 0.3493150684931507, + 0.3495433789954338, + 0.34977168949771686, + 0.35, + 0.3502283105022831, + 0.3504566210045662, + 0.3506849315068493, + 0.35091324200913243, + 0.35114155251141554, + 0.35136986301369866, + 0.3515981735159817, + 0.35182648401826483, + 0.35205479452054794, + 0.35228310502283106, + 0.35251141552511417, + 0.3527397260273972, + 0.35296803652968034, + 0.35319634703196345, + 0.35342465753424657, + 0.3536529680365297, + 0.3538812785388128, + 0.3541095890410959, + 0.354337899543379, + 0.35456621004566213, + 0.3547945205479452, + 0.3550228310502283, + 0.3552511415525114, + 0.35547945205479453, + 0.35570776255707764, + 0.3559360730593607, + 0.3561643835616438, + 0.35639269406392693, + 0.35662100456621004, + 0.35684931506849316, + 0.35707762557077627, + 0.3573059360730594, + 0.3575342465753425, + 0.35776255707762555, + 0.35799086757990867, + 0.3582191780821918, + 0.3584474885844749, + 0.358675799086758, + 0.35890410958904106, + 0.3591324200913242, + 0.3593607305936073, + 0.3595890410958904, + 0.3598173515981735, + 0.36004566210045663, + 0.36027397260273974, + 0.36050228310502286, + 0.3607305936073059, + 0.36095890410958903, + 0.36118721461187214, + 0.36141552511415526, + 0.36164383561643837, + 0.3618721461187214, + 0.36210045662100454, + 0.36232876712328765, + 0.36255707762557077, + 0.3627853881278539, + 0.363013698630137, + 0.3632420091324201, + 0.3634703196347032, + 0.36369863013698633, + 0.3639269406392694, + 0.3641552511415525, + 0.3643835616438356, + 0.36461187214611873, + 0.36484018264840185, + 0.3650684931506849, + 0.365296803652968, + 0.36552511415525113, + 0.36575342465753424, + 0.36598173515981736, + 0.36621004566210047, + 0.3664383561643836, + 0.3666666666666667, + 0.36689497716894975, + 0.36712328767123287, + 0.367351598173516, + 0.3675799086757991, + 0.3678082191780822, + 0.36803652968036527, + 0.3682648401826484, + 0.3684931506849315, + 0.3687214611872146, + 0.3689497716894977, + 0.36917808219178083, + 0.36940639269406395, + 0.36963470319634706, + 0.3698630136986301, + 0.37009132420091323, + 0.37031963470319634, + 0.37054794520547946, + 0.37077625570776257, + 0.3710045662100456, + 0.37123287671232874, + 0.37146118721461185, + 0.37168949771689497, + 0.3719178082191781, + 0.3721461187214612, + 0.3723744292237443, + 0.3726027397260274, + 0.37283105022831053, + 0.3730593607305936, + 0.3732876712328767, + 0.3735159817351598, + 0.37374429223744293, + 0.37397260273972605, + 0.3742009132420091, + 0.3744292237442922, + 0.37465753424657533, + 0.37488584474885844, + 0.37511415525114156, + 0.37534246575342467, + 0.3755707762557078, + 0.3757990867579909, + 0.376027397260274, + 0.37625570776255707, + 0.3764840182648402, + 0.3767123287671233, + 0.37694063926940635, + 0.37716894977168947, + 0.3773972602739726, + 0.3776255707762557, + 0.3778538812785388, + 0.3780821917808219, + 0.37831050228310503, + 0.37853881278538815, + 0.37876712328767126, + 0.3789954337899544, + 0.37922374429223743, + 0.37945205479452054, + 0.37968036529680366, + 0.37990867579908677, + 0.38013698630136983, + 0.38036529680365294, + 0.38059360730593605, + 0.38082191780821917, + 0.3810502283105023, + 0.3812785388127854, + 0.3815068493150685, + 0.3817351598173516, + 0.38196347031963473, + 0.38219178082191785, + 0.3824200913242009, + 0.382648401826484, + 0.38287671232876713, + 0.3831050228310502, + 0.3833333333333333, + 0.3835616438356164, + 0.38378995433789953, + 0.38401826484018264, + 0.38424657534246576, + 0.38447488584474887, + 0.384703196347032, + 0.3849315068493151, + 0.3851598173515982, + 0.38538812785388127, + 0.3856164383561644, + 0.3858447488584475, + 0.38607305936073055, + 0.38630136986301367, + 0.3865296803652968, + 0.3867579908675799, + 0.386986301369863, + 0.3872146118721461, + 0.38744292237442923, + 0.38767123287671235, + 0.38789954337899546, + 0.3881278538812786, + 0.38835616438356163, + 0.38858447488584474, + 0.38881278538812786, + 0.38904109589041097, + 0.38926940639269403, + 0.38949771689497714, + 0.38972602739726026, + 0.38995433789954337, + 0.3901826484018265, + 0.3904109589041096, + 0.3906392694063927, + 0.3908675799086758, + 0.39109589041095894, + 0.39132420091324205, + 0.3915525114155251, + 0.3917808219178082, + 0.39200913242009133, + 0.3922374429223744, + 0.3924657534246575, + 0.3926940639269406, + 0.39292237442922373, + 0.39315068493150684, + 0.39337899543378996, + 0.39360730593607307, + 0.3938356164383562, + 0.3940639269406393, + 0.3942922374429224, + 0.39452054794520547, + 0.3947488584474886, + 0.3949771689497717, + 0.39520547945205475, + 0.39543378995433787, + 0.395662100456621, + 0.3958904109589041, + 0.3961187214611872, + 0.3963470319634703, + 0.39657534246575343, + 0.39680365296803655, + 0.39703196347031966, + 0.3972602739726028, + 0.39748858447488583, + 0.39771689497716894, + 0.39794520547945206, + 0.39817351598173517, + 0.39840182648401823, + 0.39863013698630134, + 0.39885844748858446, + 0.39908675799086757, + 0.3993150684931507, + 0.3995433789954338, + 0.3997716894977169, + 0.4, + 0.40022831050228314, + 0.40045662100456625, + 0.4006849315068493, + 0.4009132420091324, + 0.40114155251141553, + 0.4013698630136986, + 0.4015981735159817, + 0.4018264840182648, + 0.40205479452054793, + 0.40228310502283104, + 0.40251141552511416, + 0.40273972602739727, + 0.4029680365296804, + 0.4031963470319635, + 0.4034246575342466, + 0.40365296803652967, + 0.4038812785388128, + 0.4041095890410959, + 0.404337899543379, + 0.40456621004566207, + 0.4047945205479452, + 0.4050228310502283, + 0.4052511415525114, + 0.4054794520547945, + 0.40570776255707763, + 0.40593607305936075, + 0.40616438356164386, + 0.406392694063927, + 0.4066210045662101, + 0.40684931506849314, + 0.40707762557077626, + 0.40730593607305937, + 0.40753424657534243, + 0.40776255707762554, + 0.40799086757990866, + 0.40821917808219177, + 0.4084474885844749, + 0.408675799086758, + 0.4089041095890411, + 0.4091324200913242, + 0.40936073059360734, + 0.40958904109589045, + 0.4098173515981735, + 0.4100456621004566, + 0.41027397260273973, + 0.4105022831050228, + 0.4107305936073059, + 0.410958904109589, + 0.41118721461187213, + 0.41141552511415524, + 0.41164383561643836, + 0.41187214611872147, + 0.4121004566210046, + 0.4123287671232877, + 0.4125570776255708, + 0.41278538812785387, + 0.413013698630137, + 0.4132420091324201, + 0.4134703196347032, + 0.41369863013698627, + 0.4139269406392694, + 0.4141552511415525, + 0.4143835616438356, + 0.4146118721461187, + 0.41484018264840183, + 0.41506849315068495, + 0.41529680365296806, + 0.4155251141552512, + 0.4157534246575343, + 0.41598173515981735, + 0.41621004566210046, + 0.41643835616438357, + 0.41666666666666663, + 0.41689497716894974, + 0.41712328767123286, + 0.41735159817351597, + 0.4175799086757991, + 0.4178082191780822, + 0.4180365296803653, + 0.4182648401826484, + 0.41849315068493154, + 0.41872146118721465, + 0.4189497716894977, + 0.4191780821917808, + 0.41940639269406393, + 0.419634703196347, + 0.4198630136986301, + 0.4200913242009132, + 0.42031963470319633, + 0.42054794520547945, + 0.42077625570776256, + 0.42100456621004567, + 0.4212328767123288, + 0.4214611872146119, + 0.421689497716895, + 0.42191780821917807, + 0.4221461187214612, + 0.4223744292237443, + 0.4226027397260274, + 0.42283105022831047, + 0.4230593607305936, + 0.4232876712328767, + 0.4235159817351598, + 0.4237442922374429, + 0.42397260273972603, + 0.42420091324200915, + 0.42442922374429226, + 0.4246575342465754, + 0.4248858447488585, + 0.42511415525114155, + 0.42534246575342466, + 0.42557077625570777, + 0.42579908675799083, + 0.42602739726027394, + 0.42625570776255706, + 0.42648401826484017, + 0.4267123287671233, + 0.4269406392694064, + 0.4271689497716895, + 0.4273972602739726, + 0.42762557077625574, + 0.42785388127853885, + 0.4280821917808219, + 0.428310502283105, + 0.42853881278538813, + 0.4287671232876712, + 0.4289954337899543, + 0.4292237442922374, + 0.42945205479452053, + 0.42968036529680365, + 0.42990867579908676, + 0.4301369863013699, + 0.430365296803653, + 0.4305936073059361, + 0.4308219178082192, + 0.43105022831050227, + 0.4312785388127854, + 0.4315068493150685, + 0.4317351598173516, + 0.43196347031963467, + 0.4321917808219178, + 0.4324200913242009, + 0.432648401826484, + 0.4328767123287671, + 0.43310502283105023, + 0.43333333333333335, + 0.43356164383561646, + 0.4337899543378996, + 0.4340182648401827, + 0.43424657534246575, + 0.43447488584474886, + 0.434703196347032, + 0.43493150684931503, + 0.43515981735159814, + 0.43538812785388126, + 0.43561643835616437, + 0.4358447488584475, + 0.4360730593607306, + 0.4363013698630137, + 0.4365296803652968, + 0.43675799086757994, + 0.43698630136986305, + 0.4372146118721461, + 0.4374429223744292, + 0.43767123287671234, + 0.4378995433789954, + 0.4381278538812785, + 0.4383561643835616, + 0.43858447488584473, + 0.43881278538812785, + 0.43904109589041096, + 0.4392694063926941, + 0.4394977168949772, + 0.4397260273972603, + 0.4399543378995434, + 0.44018264840182647, + 0.4404109589041096, + 0.4406392694063927, + 0.4408675799086758, + 0.44109589041095887, + 0.441324200913242, + 0.4415525114155251, + 0.4417808219178082, + 0.4420091324200913, + 0.44223744292237444, + 0.44246575342465755, + 0.44269406392694066, + 0.4429223744292238, + 0.4431506849315069, + 0.44337899543378995, + 0.44360730593607306, + 0.4438356164383562, + 0.44406392694063923, + 0.44429223744292234, + 0.44452054794520546, + 0.44474885844748857, + 0.4449771689497717, + 0.4452054794520548, + 0.4454337899543379, + 0.445662100456621, + 0.44589041095890414, + 0.44611872146118725, + 0.4463470319634703, + 0.4465753424657534, + 0.44680365296803654, + 0.4470319634703196, + 0.4472602739726027, + 0.4474885844748858, + 0.44771689497716893, + 0.44794520547945205, + 0.44817351598173516, + 0.4484018264840183, + 0.4486301369863014, + 0.4488584474885845, + 0.4490867579908676, + 0.44931506849315067, + 0.4495433789954338, + 0.4497716894977169, + 0.45, + 0.45022831050228307, + 0.4504566210045662, + 0.4506849315068493, + 0.4509132420091324, + 0.4511415525114155, + 0.45136986301369864, + 0.45159817351598175, + 0.45182648401826486, + 0.452054794520548, + 0.4522831050228311, + 0.45251141552511415, + 0.45273972602739726, + 0.4529680365296804, + 0.45319634703196343, + 0.45342465753424654, + 0.45365296803652966, + 0.45388127853881277, + 0.4541095890410959, + 0.454337899543379, + 0.4545662100456621, + 0.4547945205479452, + 0.45502283105022834, + 0.45525114155251145, + 0.4554794520547945, + 0.4557077625570776, + 0.45593607305936074, + 0.45616438356164385, + 0.4563926940639269, + 0.45662100456621, + 0.45684931506849313, + 0.45707762557077625, + 0.45730593607305936, + 0.4575342465753425, + 0.4577625570776256, + 0.4579908675799087, + 0.4582191780821918, + 0.4584474885844749, + 0.458675799086758, + 0.4589041095890411, + 0.4591324200913242, + 0.45936073059360727, + 0.4595890410958904, + 0.4598173515981735, + 0.4600456621004566, + 0.4602739726027397, + 0.46050228310502284, + 0.46073059360730595, + 0.46095890410958906, + 0.4611872146118722, + 0.4614155251141553, + 0.46164383561643835, + 0.46187214611872146, + 0.4621004566210046, + 0.46232876712328763, + 0.46255707762557075, + 0.46278538812785386, + 0.46301369863013697, + 0.4632420091324201, + 0.4634703196347032, + 0.4636986301369863, + 0.4639269406392694, + 0.46415525114155254, + 0.46438356164383565, + 0.4646118721461187, + 0.4648401826484018, + 0.46506849315068494, + 0.46529680365296805, + 0.4655251141552511, + 0.4657534246575342, + 0.46598173515981733, + 0.46621004566210045, + 0.46643835616438356, + 0.4666666666666667, + 0.4668949771689498, + 0.4671232876712329, + 0.467351598173516, + 0.4675799086757991, + 0.4678082191780822, + 0.4680365296803653, + 0.4682648401826484, + 0.46849315068493147, + 0.4687214611872146, + 0.4689497716894977, + 0.4691780821917808, + 0.4694063926940639, + 0.46963470319634704, + 0.46986301369863015, + 0.47009132420091326, + 0.4703196347031964, + 0.4705479452054795, + 0.47077625570776255, + 0.47100456621004566, + 0.4712328767123288, + 0.47146118721461183, + 0.47168949771689495, + 0.47191780821917806, + 0.47214611872146117, + 0.4723744292237443, + 0.4726027397260274, + 0.4728310502283105, + 0.4730593607305936, + 0.47328767123287674, + 0.47351598173515985, + 0.4737442922374429, + 0.473972602739726, + 0.47420091324200914, + 0.47442922374429225, + 0.4746575342465753, + 0.4748858447488584, + 0.47511415525114153, + 0.47534246575342465, + 0.47557077625570776, + 0.4757990867579909, + 0.476027397260274, + 0.4762557077625571, + 0.4764840182648402, + 0.47671232876712333, + 0.4769406392694064, + 0.4771689497716895, + 0.4773972602739726, + 0.47762557077625567, + 0.4778538812785388, + 0.4780821917808219, + 0.478310502283105, + 0.4785388127853881, + 0.47876712328767124, + 0.47899543378995435, + 0.47922374429223746, + 0.4794520547945206, + 0.4796803652968037, + 0.47990867579908675, + 0.48013698630136986, + 0.480365296803653, + 0.48059360730593603, + 0.48082191780821915, + 0.48105022831050226, + 0.4812785388127854, + 0.4815068493150685, + 0.4817351598173516, + 0.4819634703196347, + 0.4821917808219178, + 0.48242009132420094, + 0.48264840182648405, + 0.4828767123287671, + 0.4831050228310502, + 0.48333333333333334, + 0.48356164383561645, + 0.4837899543378995, + 0.4840182648401826, + 0.48424657534246573, + 0.48447488584474885, + 0.48470319634703196, + 0.4849315068493151, + 0.4851598173515982, + 0.4853881278538813, + 0.4856164383561644, + 0.48584474885844753, + 0.4860730593607306, + 0.4863013698630137, + 0.4865296803652968, + 0.48675799086757987, + 0.486986301369863, + 0.4872146118721461, + 0.4874429223744292, + 0.4876712328767123, + 0.48789954337899544, + 0.48812785388127855, + 0.48835616438356166, + 0.4885844748858448, + 0.4888127853881279, + 0.48904109589041095, + 0.48926940639269406, + 0.4894977168949772, + 0.48972602739726023, + 0.48995433789954335, + 0.49018264840182646, + 0.4904109589041096, + 0.4906392694063927, + 0.4908675799086758, + 0.4910958904109589, + 0.491324200913242, + 0.49155251141552514, + 0.49178082191780825, + 0.4920091324200913, + 0.4922374429223744, + 0.49246575342465754, + 0.49269406392694065, + 0.4929223744292237, + 0.4931506849315068, + 0.49337899543378994, + 0.49360730593607305, + 0.49383561643835616, + 0.4940639269406393, + 0.4942922374429224, + 0.4945205479452055, + 0.4947488584474886, + 0.49497716894977173, + 0.4952054794520548, + 0.4954337899543379, + 0.495662100456621, + 0.49589041095890407, + 0.4961187214611872, + 0.4963470319634703, + 0.4965753424657534, + 0.4968036529680365, + 0.49703196347031964, + 0.49726027397260275, + 0.49748858447488586, + 0.497716894977169, + 0.4979452054794521, + 0.49817351598173515, + 0.49840182648401826, + 0.4986301369863014, + 0.49885844748858443, + 0.49908675799086755, + 0.49931506849315066, + 0.4995433789954338, + 0.4997716894977169, + 0.5, + 0.5002283105022831, + 0.5004566210045662, + 0.5006849315068493, + 0.5009132420091325, + 0.5011415525114156, + 0.5013698630136987, + 0.5015981735159818, + 0.5018264840182649, + 0.502054794520548, + 0.5022831050228311, + 0.5025114155251141, + 0.5027397260273972, + 0.5029680365296804, + 0.5031963470319635, + 0.5034246575342466, + 0.5036529680365297, + 0.5038812785388127, + 0.5041095890410958, + 0.5043378995433789, + 0.504566210045662, + 0.5047945205479452, + 0.5050228310502283, + 0.5052511415525114, + 0.5054794520547945, + 0.5057077625570776, + 0.5059360730593607, + 0.5061643835616438, + 0.506392694063927, + 0.5066210045662101, + 0.5068493150684932, + 0.5070776255707763, + 0.5073059360730594, + 0.5075342465753425, + 0.5077625570776256, + 0.5079908675799087, + 0.5082191780821919, + 0.5084474885844749, + 0.508675799086758, + 0.5089041095890411, + 0.5091324200913242, + 0.5093607305936073, + 0.5095890410958904, + 0.5098173515981735, + 0.5100456621004565, + 0.5102739726027397, + 0.5105022831050228, + 0.5107305936073059, + 0.510958904109589, + 0.5111872146118721, + 0.5114155251141552, + 0.5116438356164383, + 0.5118721461187214, + 0.5121004566210046, + 0.5123287671232877, + 0.5125570776255708, + 0.5127853881278539, + 0.513013698630137, + 0.5132420091324201, + 0.5134703196347032, + 0.5136986301369864, + 0.5139269406392695, + 0.5141552511415526, + 0.5143835616438357, + 0.5146118721461187, + 0.5148401826484018, + 0.5150684931506849, + 0.515296803652968, + 0.5155251141552512, + 0.5157534246575343, + 0.5159817351598174, + 0.5162100456621004, + 0.5164383561643835, + 0.5166666666666666, + 0.5168949771689497, + 0.5171232876712328, + 0.517351598173516, + 0.5175799086757991, + 0.5178082191780822, + 0.5180365296803653, + 0.5182648401826484, + 0.5184931506849315, + 0.5187214611872146, + 0.5189497716894977, + 0.5191780821917809, + 0.519406392694064, + 0.5196347031963471, + 0.5198630136986302, + 0.5200913242009133, + 0.5203196347031964, + 0.5205479452054795, + 0.5207762557077625, + 0.5210045662100456, + 0.5212328767123288, + 0.5214611872146119, + 0.521689497716895, + 0.5219178082191781, + 0.5221461187214611, + 0.5223744292237442, + 0.5226027397260273, + 0.5228310502283104, + 0.5230593607305936, + 0.5232876712328767, + 0.5235159817351598, + 0.5237442922374429, + 0.523972602739726, + 0.5242009132420091, + 0.5244292237442922, + 0.5246575342465754, + 0.5248858447488585, + 0.5251141552511416, + 0.5253424657534247, + 0.5255707762557078, + 0.5257990867579909, + 0.526027397260274, + 0.5262557077625571, + 0.5264840182648403, + 0.5267123287671233, + 0.5269406392694064, + 0.5271689497716895, + 0.5273972602739726, + 0.5276255707762557, + 0.5278538812785388, + 0.5280821917808219, + 0.5283105022831049, + 0.5285388127853881, + 0.5287671232876712, + 0.5289954337899543, + 0.5292237442922374, + 0.5294520547945205, + 0.5296803652968036, + 0.5299086757990867, + 0.5301369863013699, + 0.530365296803653, + 0.5305936073059361, + 0.5308219178082192, + 0.5310502283105023, + 0.5312785388127854, + 0.5315068493150685, + 0.5317351598173516, + 0.5319634703196348, + 0.5321917808219179, + 0.532420091324201, + 0.5326484018264841, + 0.5328767123287671, + 0.5331050228310502, + 0.5333333333333333, + 0.5335616438356164, + 0.5337899543378996, + 0.5340182648401827, + 0.5342465753424658, + 0.5344748858447488, + 0.5347031963470319, + 0.534931506849315, + 0.5351598173515981, + 0.5353881278538812, + 0.5356164383561643, + 0.5358447488584475, + 0.5360730593607306, + 0.5363013698630137, + 0.5365296803652968, + 0.5367579908675799, + 0.536986301369863, + 0.5372146118721461, + 0.5374429223744293, + 0.5376712328767124, + 0.5378995433789955, + 0.5381278538812786, + 0.5383561643835617, + 0.5385844748858448, + 0.5388127853881279, + 0.5390410958904109, + 0.539269406392694, + 0.5394977168949772, + 0.5397260273972603, + 0.5399543378995434, + 0.5401826484018265, + 0.5404109589041095, + 0.5406392694063926, + 0.5408675799086757, + 0.5410958904109588, + 0.541324200913242, + 0.5415525114155251, + 0.5417808219178082, + 0.5420091324200913, + 0.5422374429223744, + 0.5424657534246575, + 0.5426940639269406, + 0.5429223744292238, + 0.5431506849315069, + 0.54337899543379, + 0.5436073059360731, + 0.5438356164383562, + 0.5440639269406393, + 0.5442922374429224, + 0.5445205479452055, + 0.5447488584474887, + 0.5449771689497717, + 0.5452054794520548, + 0.5454337899543379, + 0.545662100456621, + 0.5458904109589041, + 0.5461187214611872, + 0.5463470319634703, + 0.5465753424657533, + 0.5468036529680365, + 0.5470319634703196, + 0.5472602739726027, + 0.5474885844748858, + 0.5477168949771689, + 0.547945205479452, + 0.5481735159817351, + 0.5484018264840183, + 0.5486301369863014, + 0.5488584474885845, + 0.5490867579908676, + 0.5493150684931507, + 0.5495433789954338, + 0.5497716894977169, + 0.55, + 0.5502283105022832, + 0.5504566210045663, + 0.5506849315068494, + 0.5509132420091325, + 0.5511415525114155, + 0.5513698630136986, + 0.5515981735159817, + 0.5518264840182648, + 0.552054794520548, + 0.5522831050228311, + 0.5525114155251142, + 0.5527397260273972, + 0.5529680365296803, + 0.5531963470319634, + 0.5534246575342465, + 0.5536529680365296, + 0.5538812785388127, + 0.5541095890410959, + 0.554337899543379, + 0.5545662100456621, + 0.5547945205479452, + 0.5550228310502283, + 0.5552511415525114, + 0.5554794520547945, + 0.5557077625570777, + 0.5559360730593608, + 0.5561643835616439, + 0.556392694063927, + 0.5566210045662101, + 0.5568493150684932, + 0.5570776255707763, + 0.5573059360730593, + 0.5575342465753425, + 0.5577625570776256, + 0.5579908675799087, + 0.5582191780821918, + 0.5584474885844749, + 0.558675799086758, + 0.558904109589041, + 0.5591324200913241, + 0.5593607305936072, + 0.5595890410958904, + 0.5598173515981735, + 0.5600456621004566, + 0.5602739726027397, + 0.5605022831050228, + 0.5607305936073059, + 0.560958904109589, + 0.5611872146118722, + 0.5614155251141553, + 0.5616438356164384, + 0.5618721461187215, + 0.5621004566210046, + 0.5623287671232877, + 0.5625570776255708, + 0.562785388127854, + 0.5630136986301371, + 0.5632420091324202, + 0.5634703196347032, + 0.5636986301369863, + 0.5639269406392694, + 0.5641552511415525, + 0.5643835616438356, + 0.5646118721461187, + 0.5648401826484017, + 0.5650684931506849, + 0.565296803652968, + 0.5655251141552511, + 0.5657534246575342, + 0.5659817351598173, + 0.5662100456621004, + 0.5664383561643835, + 0.5666666666666667, + 0.5668949771689498, + 0.5671232876712329, + 0.567351598173516, + 0.5675799086757991, + 0.5678082191780822, + 0.5680365296803653, + 0.5682648401826484, + 0.5684931506849316, + 0.5687214611872147, + 0.5689497716894978, + 0.5691780821917809, + 0.5694063926940639, + 0.569634703196347, + 0.5698630136986301, + 0.5700913242009132, + 0.5703196347031964, + 0.5705479452054795, + 0.5707762557077626, + 0.5710045662100456, + 0.5712328767123287, + 0.5714611872146118, + 0.5716894977168949, + 0.571917808219178, + 0.5721461187214611, + 0.5723744292237443, + 0.5726027397260274, + 0.5728310502283105, + 0.5730593607305936, + 0.5732876712328767, + 0.5735159817351598, + 0.5737442922374429, + 0.5739726027397261, + 0.5742009132420092, + 0.5744292237442923, + 0.5746575342465754, + 0.5748858447488585, + 0.5751141552511416, + 0.5753424657534247, + 0.5755707762557077, + 0.5757990867579909, + 0.576027397260274, + 0.5762557077625571, + 0.5764840182648402, + 0.5767123287671233, + 0.5769406392694064, + 0.5771689497716894, + 0.5773972602739725, + 0.5776255707762556, + 0.5778538812785388, + 0.5780821917808219, + 0.578310502283105, + 0.5785388127853881, + 0.5787671232876712, + 0.5789954337899543, + 0.5792237442922374, + 0.5794520547945206, + 0.5796803652968037, + 0.5799086757990868, + 0.5801369863013699, + 0.580365296803653, + 0.5805936073059361, + 0.5808219178082192, + 0.5810502283105023, + 0.5812785388127855, + 0.5815068493150686, + 0.5817351598173516, + 0.5819634703196347, + 0.5821917808219178, + 0.5824200913242009, + 0.582648401826484, + 0.5828767123287671, + 0.5831050228310501, + 0.5833333333333333, + 0.5835616438356164, + 0.5837899543378995, + 0.5840182648401826, + 0.5842465753424657, + 0.5844748858447488, + 0.5847031963470319, + 0.584931506849315, + 0.5851598173515982, + 0.5853881278538813, + 0.5856164383561644, + 0.5858447488584475, + 0.5860730593607306, + 0.5863013698630137, + 0.5865296803652968, + 0.58675799086758, + 0.5869863013698631, + 0.5872146118721462, + 0.5874429223744293, + 0.5876712328767123, + 0.5878995433789954, + 0.5881278538812785, + 0.5883561643835616, + 0.5885844748858448, + 0.5888127853881279, + 0.589041095890411, + 0.589269406392694, + 0.5894977168949771, + 0.5897260273972602, + 0.5899543378995433, + 0.5901826484018264, + 0.5904109589041096, + 0.5906392694063927, + 0.5908675799086758, + 0.5910958904109589, + 0.591324200913242, + 0.5915525114155251, + 0.5917808219178082, + 0.5920091324200913, + 0.5922374429223745, + 0.5924657534246576, + 0.5926940639269407, + 0.5929223744292238, + 0.5931506849315069, + 0.59337899543379, + 0.5936073059360731, + 0.5938356164383561, + 0.5940639269406393, + 0.5942922374429224, + 0.5945205479452055, + 0.5947488584474886, + 0.5949771689497717, + 0.5952054794520548, + 0.5954337899543378, + 0.5956621004566209, + 0.595890410958904, + 0.5961187214611872, + 0.5963470319634703, + 0.5965753424657534, + 0.5968036529680365, + 0.5970319634703196, + 0.5972602739726027, + 0.5974885844748858, + 0.597716894977169, + 0.5979452054794521, + 0.5981735159817352, + 0.5984018264840183, + 0.5986301369863014, + 0.5988584474885845, + 0.5990867579908676, + 0.5993150684931507, + 0.5995433789954339, + 0.599771689497717, + 0.6, + 0.6002283105022831, + 0.6004566210045662, + 0.6006849315068493, + 0.6009132420091324, + 0.6011415525114155, + 0.6013698630136987, + 0.6015981735159817, + 0.6018264840182648, + 0.6020547945205479, + 0.602283105022831, + 0.6025114155251141, + 0.6027397260273972, + 0.6029680365296803, + 0.6031963470319635, + 0.6034246575342466, + 0.6036529680365297, + 0.6038812785388128, + 0.6041095890410959, + 0.604337899543379, + 0.6045662100456621, + 0.6047945205479452, + 0.6050228310502284, + 0.6052511415525115, + 0.6054794520547946, + 0.6057077625570777, + 0.6059360730593608, + 0.6061643835616438, + 0.6063926940639269, + 0.60662100456621, + 0.6068493150684932, + 0.6070776255707763, + 0.6073059360730594, + 0.6075342465753424, + 0.6077625570776255, + 0.6079908675799086, + 0.6082191780821917, + 0.6084474885844748, + 0.608675799086758, + 0.6089041095890411, + 0.6091324200913242, + 0.6093607305936073, + 0.6095890410958904, + 0.6098173515981735, + 0.6100456621004566, + 0.6102739726027397, + 0.6105022831050229, + 0.610730593607306, + 0.6109589041095891, + 0.6111872146118722, + 0.6114155251141553, + 0.6116438356164384, + 0.6118721461187215, + 0.6121004566210045, + 0.6123287671232877, + 0.6125570776255708, + 0.6127853881278539, + 0.613013698630137, + 0.6132420091324201, + 0.6134703196347032, + 0.6136986301369862, + 0.6139269406392693, + 0.6141552511415524, + 0.6143835616438356, + 0.6146118721461187, + 0.6148401826484018, + 0.6150684931506849, + 0.615296803652968, + 0.6155251141552511, + 0.6157534246575342, + 0.6159817351598174, + 0.6162100456621005, + 0.6164383561643836, + 0.6166666666666667, + 0.6168949771689498, + 0.6171232876712329, + 0.617351598173516, + 0.6175799086757991, + 0.6178082191780823, + 0.6180365296803654, + 0.6182648401826484, + 0.6184931506849315, + 0.6187214611872146, + 0.6189497716894977, + 0.6191780821917808, + 0.619406392694064, + 0.6196347031963471, + 0.6198630136986301, + 0.6200913242009132, + 0.6203196347031963, + 0.6205479452054794, + 0.6207762557077625, + 0.6210045662100456, + 0.6212328767123287, + 0.6214611872146119, + 0.621689497716895, + 0.6219178082191781, + 0.6221461187214612, + 0.6223744292237443, + 0.6226027397260274, + 0.6228310502283105, + 0.6230593607305936, + 0.6232876712328768, + 0.6235159817351599, + 0.623744292237443, + 0.6239726027397261, + 0.6242009132420092, + 0.6244292237442922, + 0.6246575342465753, + 0.6248858447488584, + 0.6251141552511416, + 0.6253424657534247, + 0.6255707762557078, + 0.6257990867579908, + 0.6260273972602739, + 0.626255707762557, + 0.6264840182648401, + 0.6267123287671232, + 0.6269406392694064, + 0.6271689497716895, + 0.6273972602739726, + 0.6276255707762557, + 0.6278538812785388, + 0.6280821917808219, + 0.628310502283105, + 0.6285388127853881, + 0.6287671232876713, + 0.6289954337899544, + 0.6292237442922375, + 0.6294520547945206, + 0.6296803652968037, + 0.6299086757990868, + 0.6301369863013699, + 0.6303652968036529, + 0.630593607305936, + 0.6308219178082192, + 0.6310502283105023, + 0.6312785388127854, + 0.6315068493150685, + 0.6317351598173516, + 0.6319634703196346, + 0.6321917808219177, + 0.6324200913242009, + 0.632648401826484, + 0.6328767123287671, + 0.6331050228310502, + 0.6333333333333333, + 0.6335616438356164, + 0.6337899543378995, + 0.6340182648401826, + 0.6342465753424658, + 0.6344748858447489, + 0.634703196347032, + 0.6349315068493151, + 0.6351598173515982, + 0.6353881278538813, + 0.6356164383561644, + 0.6358447488584476, + 0.6360730593607307, + 0.6363013698630138, + 0.6365296803652968, + 0.6367579908675799, + 0.636986301369863, + 0.6372146118721461, + 0.6374429223744292, + 0.6376712328767123, + 0.6378995433789955, + 0.6381278538812785, + 0.6383561643835616, + 0.6385844748858447, + 0.6388127853881278, + 0.6390410958904109, + 0.639269406392694, + 0.6394977168949771, + 0.6397260273972603, + 0.6399543378995434, + 0.6401826484018265, + 0.6404109589041096, + 0.6406392694063927, + 0.6408675799086758, + 0.6410958904109589, + 0.641324200913242, + 0.6415525114155252, + 0.6417808219178083, + 0.6420091324200914, + 0.6422374429223745, + 0.6424657534246576, + 0.6426940639269406, + 0.6429223744292237, + 0.6431506849315068, + 0.64337899543379, + 0.6436073059360731, + 0.6438356164383562, + 0.6440639269406392, + 0.6442922374429223, + 0.6445205479452054, + 0.6447488584474885, + 0.6449771689497716, + 0.6452054794520548, + 0.6454337899543379, + 0.645662100456621, + 0.6458904109589041, + 0.6461187214611872, + 0.6463470319634703, + 0.6465753424657534, + 0.6468036529680365, + 0.6470319634703197, + 0.6472602739726028, + 0.6474885844748859, + 0.647716894977169, + 0.6479452054794521, + 0.6481735159817352, + 0.6484018264840183, + 0.6486301369863013, + 0.6488584474885845, + 0.6490867579908676, + 0.6493150684931507, + 0.6495433789954338, + 0.6497716894977169, + 0.65, + 0.650228310502283, + 0.6504566210045661, + 0.6506849315068493, + 0.6509132420091324, + 0.6511415525114155, + 0.6513698630136986, + 0.6515981735159817, + 0.6518264840182648, + 0.6520547945205479, + 0.652283105022831, + 0.6525114155251142, + 0.6527397260273973, + 0.6529680365296804, + 0.6531963470319635, + 0.6534246575342466, + 0.6536529680365297, + 0.6538812785388128, + 0.654109589041096, + 0.6543378995433791, + 0.6545662100456622, + 0.6547945205479452, + 0.6550228310502283, + 0.6552511415525114, + 0.6554794520547945, + 0.6557077625570776, + 0.6559360730593607, + 0.6561643835616439, + 0.6563926940639269, + 0.65662100456621, + 0.6568493150684931, + 0.6570776255707762, + 0.6573059360730593, + 0.6575342465753424, + 0.6577625570776255, + 0.6579908675799087, + 0.6582191780821918, + 0.6584474885844749, + 0.658675799086758, + 0.6589041095890411, + 0.6591324200913242, + 0.6593607305936073, + 0.6595890410958904, + 0.6598173515981736, + 0.6600456621004567, + 0.6602739726027398, + 0.6605022831050229, + 0.660730593607306, + 0.660958904109589, + 0.6611872146118721, + 0.6614155251141552, + 0.6616438356164384, + 0.6618721461187215, + 0.6621004566210046, + 0.6623287671232877, + 0.6625570776255707, + 0.6627853881278538, + 0.6630136986301369, + 0.66324200913242, + 0.6634703196347032, + 0.6636986301369863, + 0.6639269406392694, + 0.6641552511415525, + 0.6643835616438356, + 0.6646118721461187, + 0.6648401826484018, + 0.665068493150685, + 0.6652968036529681, + 0.6655251141552512, + 0.6657534246575343, + 0.6659817351598174, + 0.6662100456621005, + 0.6664383561643836, + 0.6666666666666667, + 0.6668949771689499, + 0.6671232876712329, + 0.667351598173516, + 0.6675799086757991, + 0.6678082191780822, + 0.6680365296803653, + 0.6682648401826484, + 0.6684931506849314, + 0.6687214611872145, + 0.6689497716894977, + 0.6691780821917808, + 0.6694063926940639, + 0.669634703196347, + 0.6698630136986301, + 0.6700913242009132, + 0.6703196347031963, + 0.6705479452054794, + 0.6707762557077626, + 0.6710045662100457, + 0.6712328767123288, + 0.6714611872146119, + 0.671689497716895, + 0.6719178082191781, + 0.6721461187214612, + 0.6723744292237444, + 0.6726027397260275, + 0.6728310502283106, + 0.6730593607305936, + 0.6732876712328767, + 0.6735159817351598, + 0.6737442922374429, + 0.673972602739726, + 0.6742009132420091, + 0.6744292237442923, + 0.6746575342465753, + 0.6748858447488584, + 0.6751141552511415, + 0.6753424657534246, + 0.6755707762557077, + 0.6757990867579908, + 0.6760273972602739, + 0.6762557077625571, + 0.6764840182648402, + 0.6767123287671233, + 0.6769406392694064, + 0.6771689497716895, + 0.6773972602739726, + 0.6776255707762557, + 0.6778538812785389, + 0.678082191780822, + 0.6783105022831051, + 0.6785388127853882, + 0.6787671232876713, + 0.6789954337899544, + 0.6792237442922374, + 0.6794520547945205, + 0.6796803652968036, + 0.6799086757990868, + 0.6801369863013699, + 0.680365296803653, + 0.6805936073059361, + 0.6808219178082191, + 0.6810502283105022, + 0.6812785388127853, + 0.6815068493150684, + 0.6817351598173516, + 0.6819634703196347, + 0.6821917808219178, + 0.6824200913242009, + 0.682648401826484, + 0.6828767123287671, + 0.6831050228310502, + 0.6833333333333333, + 0.6835616438356165, + 0.6837899543378996, + 0.6840182648401827, + 0.6842465753424658, + 0.6844748858447489, + 0.684703196347032, + 0.6849315068493151, + 0.6851598173515983, + 0.6853881278538813, + 0.6856164383561644, + 0.6858447488584475, + 0.6860730593607306, + 0.6863013698630137, + 0.6865296803652968, + 0.6867579908675798, + 0.6869863013698629, + 0.687214611872146, + 0.6874429223744292, + 0.6876712328767123, + 0.6878995433789954, + 0.6881278538812785, + 0.6883561643835616, + 0.6885844748858447, + 0.6888127853881278, + 0.689041095890411, + 0.6892694063926941, + 0.6894977168949772, + 0.6897260273972603, + 0.6899543378995434, + 0.6901826484018265, + 0.6904109589041096, + 0.6906392694063928, + 0.6908675799086759, + 0.691095890410959, + 0.691324200913242, + 0.6915525114155251, + 0.6917808219178082, + 0.6920091324200913, + 0.6922374429223744, + 0.6924657534246575, + 0.6926940639269407, + 0.6929223744292237, + 0.6931506849315068, + 0.6933789954337899, + 0.693607305936073, + 0.6938356164383561, + 0.6940639269406392, + 0.6942922374429223, + 0.6945205479452055, + 0.6947488584474886, + 0.6949771689497717, + 0.6952054794520548, + 0.6954337899543379, + 0.695662100456621, + 0.6958904109589041, + 0.6961187214611873, + 0.6963470319634704, + 0.6965753424657535, + 0.6968036529680366, + 0.6970319634703197, + 0.6972602739726028, + 0.6974885844748858, + 0.6977168949771689, + 0.697945205479452, + 0.6981735159817352, + 0.6984018264840183, + 0.6986301369863014, + 0.6988584474885845, + 0.6990867579908675, + 0.6993150684931506, + 0.6995433789954337, + 0.6997716894977168, + 0.7, + 0.7002283105022831, + 0.7004566210045662, + 0.7006849315068493, + 0.7009132420091324, + 0.7011415525114155, + 0.7013698630136986, + 0.7015981735159817, + 0.7018264840182649, + 0.702054794520548, + 0.7022831050228311, + 0.7025114155251142, + 0.7027397260273973, + 0.7029680365296804, + 0.7031963470319635, + 0.7034246575342467, + 0.7036529680365297, + 0.7038812785388128, + 0.7041095890410959, + 0.704337899543379, + 0.7045662100456621, + 0.7047945205479452, + 0.7050228310502283, + 0.7052511415525113, + 0.7054794520547945, + 0.7057077625570776, + 0.7059360730593607, + 0.7061643835616438, + 0.7063926940639269, + 0.70662100456621, + 0.7068493150684931, + 0.7070776255707762, + 0.7073059360730594, + 0.7075342465753425, + 0.7077625570776256, + 0.7079908675799087, + 0.7082191780821918, + 0.7084474885844749, + 0.708675799086758, + 0.7089041095890412, + 0.7091324200913243, + 0.7093607305936074, + 0.7095890410958905, + 0.7098173515981735, + 0.7100456621004566, + 0.7102739726027397, + 0.7105022831050228, + 0.710730593607306, + 0.7109589041095891, + 0.7111872146118721, + 0.7114155251141552, + 0.7116438356164383, + 0.7118721461187214, + 0.7121004566210045, + 0.7123287671232876, + 0.7125570776255707, + 0.7127853881278539, + 0.713013698630137, + 0.7132420091324201, + 0.7134703196347032, + 0.7136986301369863, + 0.7139269406392694, + 0.7141552511415525, + 0.7143835616438357, + 0.7146118721461188, + 0.7148401826484019, + 0.715068493150685, + 0.7152968036529681, + 0.7155251141552512, + 0.7157534246575342, + 0.7159817351598173, + 0.7162100456621004, + 0.7164383561643836, + 0.7166666666666667, + 0.7168949771689498, + 0.7171232876712329, + 0.7173515981735159, + 0.717579908675799, + 0.7178082191780821, + 0.7180365296803652, + 0.7182648401826484, + 0.7184931506849315, + 0.7187214611872146, + 0.7189497716894977, + 0.7191780821917808, + 0.7194063926940639, + 0.719634703196347, + 0.7198630136986301, + 0.7200913242009133, + 0.7203196347031964, + 0.7205479452054795, + 0.7207762557077626, + 0.7210045662100457, + 0.7212328767123288, + 0.7214611872146119, + 0.7216894977168951, + 0.7219178082191781, + 0.7221461187214612, + 0.7223744292237443, + 0.7226027397260274, + 0.7228310502283105, + 0.7230593607305936, + 0.7232876712328767, + 0.7235159817351597, + 0.7237442922374429, + 0.723972602739726, + 0.7242009132420091, + 0.7244292237442922, + 0.7246575342465753, + 0.7248858447488584, + 0.7251141552511415, + 0.7253424657534246, + 0.7255707762557078, + 0.7257990867579909, + 0.726027397260274, + 0.7262557077625571, + 0.7264840182648402, + 0.7267123287671233, + 0.7269406392694064, + 0.7271689497716896, + 0.7273972602739727, + 0.7276255707762558, + 0.7278538812785389, + 0.7280821917808219, + 0.728310502283105, + 0.7285388127853881, + 0.7287671232876712, + 0.7289954337899544, + 0.7292237442922375, + 0.7294520547945205, + 0.7296803652968036, + 0.7299086757990867, + 0.7301369863013698, + 0.7303652968036529, + 0.730593607305936, + 0.7308219178082191, + 0.7310502283105023, + 0.7312785388127854, + 0.7315068493150685, + 0.7317351598173516, + 0.7319634703196347, + 0.7321917808219178, + 0.7324200913242009, + 0.732648401826484, + 0.7328767123287672, + 0.7331050228310503, + 0.7333333333333334, + 0.7335616438356165, + 0.7337899543378996, + 0.7340182648401826, + 0.7342465753424657, + 0.7344748858447488, + 0.734703196347032, + 0.7349315068493151, + 0.7351598173515982, + 0.7353881278538813, + 0.7356164383561643, + 0.7358447488584474, + 0.7360730593607305, + 0.7363013698630136, + 0.7365296803652968, + 0.7367579908675799, + 0.736986301369863, + 0.7372146118721461, + 0.7374429223744292, + 0.7376712328767123, + 0.7378995433789954, + 0.7381278538812786, + 0.7383561643835617, + 0.7385844748858448, + 0.7388127853881279, + 0.739041095890411, + 0.7392694063926941, + 0.7394977168949772, + 0.7397260273972603, + 0.7399543378995435, + 0.7401826484018265, + 0.7404109589041096, + 0.7406392694063927, + 0.7408675799086758, + 0.7410958904109589, + 0.741324200913242, + 0.7415525114155251, + 0.7417808219178081, + 0.7420091324200913, + 0.7422374429223744, + 0.7424657534246575, + 0.7426940639269406, + 0.7429223744292237, + 0.7431506849315068, + 0.7433789954337899, + 0.743607305936073, + 0.7438356164383562, + 0.7440639269406393, + 0.7442922374429224, + 0.7445205479452055, + 0.7447488584474886, + 0.7449771689497717, + 0.7452054794520548, + 0.745433789954338, + 0.7456621004566211, + 0.7458904109589042, + 0.7461187214611873, + 0.7463470319634703, + 0.7465753424657534, + 0.7468036529680365, + 0.7470319634703196, + 0.7472602739726028, + 0.7474885844748859, + 0.7477168949771689, + 0.747945205479452, + 0.7481735159817351, + 0.7484018264840182, + 0.7486301369863013, + 0.7488584474885844, + 0.7490867579908675, + 0.7493150684931507, + 0.7495433789954338, + 0.7497716894977169 + ], + "timestep": 1, + "start_date": [ + 1, + 1 ], - "holiday_schedule": "OfficeMedium BLDG_OCC_SCH_Default", - "summer_designday_schedule": "OfficeMedium BLDG_OCC_SCH_SmrDsn", - "winter_designday_schedule": "OfficeMedium BLDG_OCC_SCH_WntrDsn", + "placeholder_value": 0.0, + "interpolate": false, "schedule_type_limit": "Fractional" } ], @@ -19207,23 +19207,23 @@ }, { "type": "ScheduleTypeLimit", - "identifier": "Activity Level", - "lower_limit": 0.0, + "identifier": "Temperature", + "lower_limit": -273.15, "upper_limit": { "type": "NoLimit" }, "numeric_type": "Continuous", - "unit_type": "ActivityLevel" + "unit_type": "Temperature" }, { "type": "ScheduleTypeLimit", - "identifier": "Temperature", - "lower_limit": -273.15, + "identifier": "Activity Level", + "lower_limit": 0.0, "upper_limit": { "type": "NoLimit" }, "numeric_type": "Continuous", - "unit_type": "Temperature" + "unit_type": "ActivityLevel" } ] } diff --git a/samples/model/model_energy_no_program.json b/samples/model/model_energy_no_program.json index 98de465..0eb8a3e 100644 --- a/samples/model/model_energy_no_program.json +++ b/samples/model/model_energy_no_program.json @@ -52,34 +52,21 @@ "global_construction_set": "Default Generic Construction Set", "constructions": [ { - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exterior Door", - "layers": [ - "Generic Painted Metal", - "Generic 25mm Insulation", - "Generic Painted Metal" - ] + "type": "ShadeConstruction", + "identifier": "Generic Shade", + "solar_reflectance": 0.35, + "visible_reflectance": 0.35, + "is_specular": false }, { "type": "WindowConstructionAbridged", - "identifier": "Triple Pane Window", + "identifier": "Generic Double Pane", "layers": [ - "Generic Clear Glass", - "Generic Window Air Gap", - "Generic Clear Glass", + "Generic Low-e Glass", "Generic Window Air Gap", "Generic Clear Glass" ] }, - { - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Floor", - "layers": [ - "Generic Acoustic Tile", - "Generic Ceiling Air Gap", - "Generic LW Concrete" - ] - }, { "type": "OpaqueConstructionAbridged", "identifier": "Generic Exterior Wall", @@ -91,6 +78,14 @@ "Generic Gypsum Board" ] }, + { + "type": "OpaqueConstructionAbridged", + "identifier": "Generic Ground Slab", + "layers": [ + "Generic 50mm Insulation", + "Generic HW Concrete" + ] + }, { "type": "OpaqueConstructionAbridged", "identifier": "Generic Exposed Floor", @@ -103,12 +98,23 @@ }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Underground Roof", + "identifier": "Thermal Mass Floor", "layers": [ - "Generic 50mm Insulation", - "Generic HW Concrete", - "Generic Ceiling Air Gap", - "Generic Acoustic Tile" + "Thick Stone" + ] + }, + { + "type": "WindowConstructionAbridged", + "identifier": "Generic Single Pane", + "layers": [ + "Generic Clear Glass" + ] + }, + { + "type": "OpaqueConstructionAbridged", + "identifier": "Generic Interior Door", + "layers": [ + "Generic 25mm Wood" ] }, { @@ -120,22 +126,13 @@ }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Roof", + "identifier": "Generic Interior Wall", "layers": [ - "Generic Roof Membrane", - "Generic 50mm Insulation", - "Generic LW Concrete", - "Generic Ceiling Air Gap", - "Generic Acoustic Tile" + "Generic Gypsum Board", + "Generic Wall Air Gap", + "Generic Gypsum Board" ] }, - { - "type": "ShadeConstruction", - "identifier": "Generic Shade", - "solar_reflectance": 0.35, - "visible_reflectance": 0.35, - "is_specular": false - }, { "type": "OpaqueConstructionAbridged", "identifier": "Generic Underground Wall", @@ -147,20 +144,19 @@ ] }, { - "type": "WindowConstructionAbridged", - "identifier": "Generic Double Pane", + "type": "OpaqueConstructionAbridged", + "identifier": "Generic Exterior Door", "layers": [ - "Generic Low-e Glass", - "Generic Window Air Gap", - "Generic Clear Glass" + "Generic Painted Metal", + "Generic 25mm Insulation", + "Generic Painted Metal" ] }, { - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Door", - "layers": [ - "Generic 25mm Wood" - ] + "type": "AirBoundaryConstructionAbridged", + "identifier": "Generic Air Boundary", + "air_mixing_per_area": 0.1, + "air_mixing_schedule": "Always On" }, { "type": "ShadeConstruction", @@ -171,46 +167,50 @@ }, { "type": "OpaqueConstructionAbridged", - "identifier": "Thermal Mass Floor", + "identifier": "Generic Roof", "layers": [ - "Thick Stone" + "Generic Roof Membrane", + "Generic 50mm Insulation", + "Generic LW Concrete", + "Generic Ceiling Air Gap", + "Generic Acoustic Tile" ] }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Ground Slab", + "identifier": "Generic Interior Floor", "layers": [ - "Generic 50mm Insulation", - "Generic HW Concrete" + "Generic Acoustic Tile", + "Generic Ceiling Air Gap", + "Generic LW Concrete" ] }, - { - "type": "AirBoundaryConstructionAbridged", - "identifier": "Generic Air Boundary", - "air_mixing_per_area": 0.1, - "air_mixing_schedule": "Always On" - }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Wall", + "identifier": "Generic Interior Ceiling", "layers": [ - "Generic Gypsum Board", - "Generic Wall Air Gap", - "Generic Gypsum Board" + "Generic LW Concrete", + "Generic Ceiling Air Gap", + "Generic Acoustic Tile" ] }, { "type": "WindowConstructionAbridged", - "identifier": "Generic Single Pane", + "identifier": "Triple Pane Window", "layers": [ + "Generic Clear Glass", + "Generic Window Air Gap", + "Generic Clear Glass", + "Generic Window Air Gap", "Generic Clear Glass" ] }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Ceiling", + "identifier": "Generic Underground Roof", "layers": [ - "Generic LW Concrete", + "Generic 50mm Insulation", + "Generic HW Concrete", "Generic Ceiling Air Gap", "Generic Acoustic Tile" ] @@ -219,27 +219,32 @@ "materials": [ { "type": "EnergyMaterial", - "identifier": "Generic 25mm Insulation", - "roughness": "MediumRough", - "thickness": 0.05, - "conductivity": 0.03, - "density": 43.0, - "specific_heat": 1210.0, + "identifier": "Generic Acoustic Tile", + "roughness": "MediumSmooth", + "thickness": 0.02, + "conductivity": 0.06, + "density": 368.0, + "specific_heat": 590.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 + "solar_absorptance": 0.2, + "visible_absorptance": 0.2 }, { - "type": "EnergyMaterial", - "identifier": "Thick Stone", - "roughness": "Rough", - "thickness": 0.3, - "conductivity": 2.31, - "density": 2322.0, - "specific_heat": 832.0, - "thermal_absorptance": 0.95, - "solar_absorptance": 0.75, - "visible_absorptance": 0.8 + "type": "EnergyWindowMaterialGlazing", + "identifier": "Generic Low-e Glass", + "thickness": 0.006, + "solar_transmittance": 0.45, + "solar_reflectance": 0.36, + "solar_reflectance_back": 0.36, + "visible_transmittance": 0.71, + "visible_reflectance": 0.21, + "visible_reflectance_back": 0.21, + "infrared_transmittance": 0.0, + "emissivity": 0.84, + "emissivity_back": 0.047, + "conductivity": 1.0, + "dirt_correction": 1.0, + "solar_diffusing": false }, { "type": "EnergyMaterial", @@ -255,33 +260,15 @@ }, { "type": "EnergyMaterial", - "identifier": "Generic Painted Metal", + "identifier": "Generic Wall Air Gap", "roughness": "Smooth", - "thickness": 0.0015, - "conductivity": 45.0, - "density": 7690.0, - "specific_heat": 410.0, - "thermal_absorptance": 0.9, - "solar_absorptance": 0.5, - "visible_absorptance": 0.5 - }, - { - "type": "EnergyMaterial", - "identifier": "Generic 25mm Wood", - "roughness": "MediumSmooth", - "thickness": 0.0254, - "conductivity": 0.15, - "density": 608.0, - "specific_heat": 1630.0, + "thickness": 0.1, + "conductivity": 0.667, + "density": 1.28, + "specific_heat": 1000.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.5, - "visible_absorptance": 0.5 - }, - { - "type": "EnergyWindowMaterialGas", - "identifier": "Generic Window Air Gap", - "thickness": 0.0127, - "gas_type": "Air" + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 }, { "type": "EnergyMaterial", @@ -297,44 +284,63 @@ }, { "type": "EnergyMaterial", - "identifier": "Generic Wall Air Gap", - "roughness": "Smooth", - "thickness": 0.1, - "conductivity": 0.667, - "density": 1.28, - "specific_heat": 1000.0, + "identifier": "Generic 25mm Insulation", + "roughness": "MediumRough", + "thickness": 0.05, + "conductivity": 0.03, + "density": 43.0, + "specific_heat": 1210.0, "thermal_absorptance": 0.9, "solar_absorptance": 0.7, "visible_absorptance": 0.7 }, { - "type": "EnergyWindowMaterialGlazing", - "identifier": "Generic Clear Glass", - "thickness": 0.006, - "solar_transmittance": 0.77, - "solar_reflectance": 0.07, - "solar_reflectance_back": 0.07, - "visible_transmittance": 0.88, - "visible_reflectance": 0.08, - "visible_reflectance_back": 0.08, - "infrared_transmittance": 0.0, - "emissivity": 0.84, - "emissivity_back": 0.84, - "conductivity": 1.0, - "dirt_correction": 1.0, - "solar_diffusing": false + "type": "EnergyMaterial", + "identifier": "Generic HW Concrete", + "roughness": "MediumRough", + "thickness": 0.2, + "conductivity": 1.95, + "density": 2240.0, + "specific_heat": 900.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.8, + "visible_absorptance": 0.8 }, { "type": "EnergyMaterial", - "identifier": "Generic Brick", + "identifier": "Generic Gypsum Board", + "roughness": "MediumSmooth", + "thickness": 0.0127, + "conductivity": 0.16, + "density": 800.0, + "specific_heat": 1090.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.5, + "visible_absorptance": 0.5 + }, + { + "type": "EnergyMaterial", + "identifier": "Generic 50mm Insulation", "roughness": "MediumRough", - "thickness": 0.1, - "conductivity": 0.9, - "density": 1920.0, - "specific_heat": 790.0, + "thickness": 0.05, + "conductivity": 0.03, + "density": 43.0, + "specific_heat": 1210.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.65, - "visible_absorptance": 0.65 + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 + }, + { + "type": "EnergyMaterial", + "identifier": "Thick Stone", + "roughness": "Rough", + "thickness": 0.3, + "conductivity": 2.31, + "density": 2322.0, + "specific_heat": 832.0, + "thermal_absorptance": 0.95, + "solar_absorptance": 0.75, + "visible_absorptance": 0.8 }, { "type": "EnergyMaterial", @@ -350,68 +356,62 @@ }, { "type": "EnergyMaterial", - "identifier": "Generic Gypsum Board", + "identifier": "Generic 25mm Wood", "roughness": "MediumSmooth", - "thickness": 0.0127, - "conductivity": 0.16, - "density": 800.0, - "specific_heat": 1090.0, + "thickness": 0.0254, + "conductivity": 0.15, + "density": 608.0, + "specific_heat": 1630.0, "thermal_absorptance": 0.9, "solar_absorptance": 0.5, "visible_absorptance": 0.5 }, { "type": "EnergyMaterial", - "identifier": "Generic HW Concrete", + "identifier": "Generic Painted Metal", + "roughness": "Smooth", + "thickness": 0.0015, + "conductivity": 45.0, + "density": 7690.0, + "specific_heat": 410.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.5, + "visible_absorptance": 0.5 + }, + { + "type": "EnergyWindowMaterialGas", + "identifier": "Generic Window Air Gap", + "thickness": 0.0127, + "gas_type": "Air" + }, + { + "type": "EnergyMaterial", + "identifier": "Generic Brick", "roughness": "MediumRough", - "thickness": 0.2, - "conductivity": 1.95, - "density": 2240.0, - "specific_heat": 900.0, + "thickness": 0.1, + "conductivity": 0.9, + "density": 1920.0, + "specific_heat": 790.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.8, - "visible_absorptance": 0.8 + "solar_absorptance": 0.65, + "visible_absorptance": 0.65 }, { "type": "EnergyWindowMaterialGlazing", - "identifier": "Generic Low-e Glass", + "identifier": "Generic Clear Glass", "thickness": 0.006, - "solar_transmittance": 0.45, - "solar_reflectance": 0.36, - "solar_reflectance_back": 0.36, - "visible_transmittance": 0.71, - "visible_reflectance": 0.21, - "visible_reflectance_back": 0.21, + "solar_transmittance": 0.77, + "solar_reflectance": 0.07, + "solar_reflectance_back": 0.07, + "visible_transmittance": 0.88, + "visible_reflectance": 0.08, + "visible_reflectance_back": 0.08, "infrared_transmittance": 0.0, "emissivity": 0.84, - "emissivity_back": 0.047, + "emissivity_back": 0.84, "conductivity": 1.0, "dirt_correction": 1.0, "solar_diffusing": false - }, - { - "type": "EnergyMaterial", - "identifier": "Generic Acoustic Tile", - "roughness": "MediumSmooth", - "thickness": 0.02, - "conductivity": 0.06, - "density": 368.0, - "specific_heat": 590.0, - "thermal_absorptance": 0.9, - "solar_absorptance": 0.2, - "visible_absorptance": 0.2 - }, - { - "type": "EnergyMaterial", - "identifier": "Generic 50mm Insulation", - "roughness": "MediumRough", - "thickness": 0.05, - "conductivity": 0.03, - "density": 43.0, - "specific_heat": 1210.0, - "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 } ], "hvacs": [], diff --git a/samples/model/model_energy_properties_office.json b/samples/model/model_energy_properties_office.json index 94c9418..c1d9200 100644 --- a/samples/model/model_energy_properties_office.json +++ b/samples/model/model_energy_properties_office.json @@ -44,22 +44,39 @@ ], "global_construction_set": "Default Generic Construction Set", "constructions": [ + { + "type": "ShadeConstruction", + "identifier": "Generic Shade", + "solar_reflectance": 0.35, + "visible_reflectance": 0.35, + "is_specular": false + }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exterior Door", + "identifier": "Generic Interior Wall", "layers": [ - "Generic Painted Metal", - "Generic 25mm Insulation", - "Generic Painted Metal" + "Generic Gypsum Board", + "Generic Wall Air Gap", + "Generic Gypsum Board" ] }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Floor", + "identifier": "Generic Underground Wall", "layers": [ - "Generic Acoustic Tile", - "Generic Ceiling Air Gap", - "Generic LW Concrete" + "Generic 50mm Insulation", + "Generic HW Concrete", + "Generic Wall Air Gap", + "Generic Gypsum Board" + ] + }, + { + "type": "OpaqueConstructionAbridged", + "identifier": "Generic Exterior Door", + "layers": [ + "Generic Painted Metal", + "Generic 25mm Insulation", + "Generic Painted Metal" ] }, { @@ -73,13 +90,11 @@ }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exterior Wall", + "identifier": "Generic Interior Floor", "layers": [ - "Generic Brick", - "Generic LW Concrete", - "Generic 50mm Insulation", - "Generic Wall Air Gap", - "Generic Gypsum Board" + "Generic Acoustic Tile", + "Generic Ceiling Air Gap", + "Generic LW Concrete" ] }, { @@ -90,22 +105,6 @@ "Generic HW Concrete" ] }, - { - "type": "AirBoundaryConstructionAbridged", - "identifier": "Generic Air Boundary", - "air_mixing_per_area": 0.1, - "air_mixing_schedule": "Always On" - }, - { - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exposed Floor", - "layers": [ - "Generic Painted Metal", - "Generic Ceiling Air Gap", - "Generic 50mm Insulation", - "Generic LW Concrete" - ] - }, { "type": "OpaqueConstructionAbridged", "identifier": "Generic Roof", @@ -119,30 +118,40 @@ }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Underground Roof", + "identifier": "Generic Exterior Wall", "layers": [ + "Generic Brick", + "Generic LW Concrete", "Generic 50mm Insulation", - "Generic HW Concrete", - "Generic Ceiling Air Gap", - "Generic Acoustic Tile" + "Generic Wall Air Gap", + "Generic Gypsum Board" ] }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Door", + "identifier": "Generic Interior Ceiling", "layers": [ - "Generic 25mm Wood" + "Generic LW Concrete", + "Generic Ceiling Air Gap", + "Generic Acoustic Tile" ] }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Wall", + "identifier": "Generic Exposed Floor", "layers": [ - "Generic Gypsum Board", - "Generic Wall Air Gap", - "Generic Gypsum Board" + "Generic Painted Metal", + "Generic Ceiling Air Gap", + "Generic 50mm Insulation", + "Generic LW Concrete" ] }, + { + "type": "AirBoundaryConstructionAbridged", + "identifier": "Generic Air Boundary", + "air_mixing_per_area": 0.1, + "air_mixing_schedule": "Always On" + }, { "type": "WindowConstructionAbridged", "identifier": "Generic Single Pane", @@ -152,43 +161,51 @@ }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Ceiling", + "identifier": "Generic Interior Door", "layers": [ - "Generic LW Concrete", - "Generic Ceiling Air Gap", - "Generic Acoustic Tile" + "Generic 25mm Wood" ] }, - { - "type": "ShadeConstruction", - "identifier": "Generic Shade", - "solar_reflectance": 0.35, - "visible_reflectance": 0.35, - "is_specular": false - }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Underground Wall", + "identifier": "Generic Underground Roof", "layers": [ "Generic 50mm Insulation", "Generic HW Concrete", - "Generic Wall Air Gap", - "Generic Gypsum Board" + "Generic Ceiling Air Gap", + "Generic Acoustic Tile" ] } ], "materials": [ { "type": "EnergyMaterial", - "identifier": "Generic 25mm Insulation", - "roughness": "MediumRough", - "thickness": 0.05, - "conductivity": 0.03, - "density": 43.0, - "specific_heat": 1210.0, + "identifier": "Generic Acoustic Tile", + "roughness": "MediumSmooth", + "thickness": 0.02, + "conductivity": 0.06, + "density": 368.0, + "specific_heat": 590.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 + "solar_absorptance": 0.2, + "visible_absorptance": 0.2 + }, + { + "type": "EnergyWindowMaterialGlazing", + "identifier": "Generic Low-e Glass", + "thickness": 0.006, + "solar_transmittance": 0.45, + "solar_reflectance": 0.36, + "solar_reflectance_back": 0.36, + "visible_transmittance": 0.71, + "visible_reflectance": 0.21, + "visible_reflectance_back": 0.21, + "infrared_transmittance": 0.0, + "emissivity": 0.84, + "emissivity_back": 0.047, + "conductivity": 1.0, + "dirt_correction": 1.0, + "solar_diffusing": false }, { "type": "EnergyMaterial", @@ -204,27 +221,27 @@ }, { "type": "EnergyMaterial", - "identifier": "Generic Painted Metal", + "identifier": "Generic Wall Air Gap", "roughness": "Smooth", - "thickness": 0.0015, - "conductivity": 45.0, - "density": 7690.0, - "specific_heat": 410.0, + "thickness": 0.1, + "conductivity": 0.667, + "density": 1.28, + "specific_heat": 1000.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.5, - "visible_absorptance": 0.5 + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 }, { "type": "EnergyMaterial", - "identifier": "Generic 25mm Wood", - "roughness": "MediumSmooth", - "thickness": 0.0254, - "conductivity": 0.15, - "density": 608.0, - "specific_heat": 1630.0, + "identifier": "Generic 25mm Insulation", + "roughness": "MediumRough", + "thickness": 0.05, + "conductivity": 0.03, + "density": 43.0, + "specific_heat": 1210.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.5, - "visible_absorptance": 0.5 + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 }, { "type": "EnergyMaterial", @@ -238,52 +255,41 @@ "solar_absorptance": 0.7, "visible_absorptance": 0.7 }, - { - "type": "EnergyWindowMaterialGas", - "identifier": "Generic Window Air Gap", - "thickness": 0.0127, - "gas_type": "Air" - }, { "type": "EnergyMaterial", - "identifier": "Generic Wall Air Gap", - "roughness": "Smooth", - "thickness": 0.1, - "conductivity": 0.667, - "density": 1.28, - "specific_heat": 1000.0, + "identifier": "Generic HW Concrete", + "roughness": "MediumRough", + "thickness": 0.2, + "conductivity": 1.95, + "density": 2240.0, + "specific_heat": 900.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 + "solar_absorptance": 0.8, + "visible_absorptance": 0.8 }, { - "type": "EnergyWindowMaterialGlazing", - "identifier": "Generic Clear Glass", - "thickness": 0.006, - "solar_transmittance": 0.77, - "solar_reflectance": 0.07, - "solar_reflectance_back": 0.07, - "visible_transmittance": 0.88, - "visible_reflectance": 0.08, - "visible_reflectance_back": 0.08, - "infrared_transmittance": 0.0, - "emissivity": 0.84, - "emissivity_back": 0.84, - "conductivity": 1.0, - "dirt_correction": 1.0, - "solar_diffusing": false + "type": "EnergyMaterial", + "identifier": "Generic Gypsum Board", + "roughness": "MediumSmooth", + "thickness": 0.0127, + "conductivity": 0.16, + "density": 800.0, + "specific_heat": 1090.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.5, + "visible_absorptance": 0.5 }, { "type": "EnergyMaterial", - "identifier": "Generic Brick", + "identifier": "Generic 50mm Insulation", "roughness": "MediumRough", - "thickness": 0.1, - "conductivity": 0.9, - "density": 1920.0, - "specific_heat": 790.0, + "thickness": 0.05, + "conductivity": 0.03, + "density": 43.0, + "specific_heat": 1210.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.65, - "visible_absorptance": 0.65 + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 }, { "type": "EnergyMaterial", @@ -299,68 +305,62 @@ }, { "type": "EnergyMaterial", - "identifier": "Generic Gypsum Board", + "identifier": "Generic 25mm Wood", "roughness": "MediumSmooth", - "thickness": 0.0127, - "conductivity": 0.16, - "density": 800.0, - "specific_heat": 1090.0, + "thickness": 0.0254, + "conductivity": 0.15, + "density": 608.0, + "specific_heat": 1630.0, "thermal_absorptance": 0.9, "solar_absorptance": 0.5, "visible_absorptance": 0.5 }, { "type": "EnergyMaterial", - "identifier": "Generic HW Concrete", + "identifier": "Generic Painted Metal", + "roughness": "Smooth", + "thickness": 0.0015, + "conductivity": 45.0, + "density": 7690.0, + "specific_heat": 410.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.5, + "visible_absorptance": 0.5 + }, + { + "type": "EnergyWindowMaterialGas", + "identifier": "Generic Window Air Gap", + "thickness": 0.0127, + "gas_type": "Air" + }, + { + "type": "EnergyMaterial", + "identifier": "Generic Brick", "roughness": "MediumRough", - "thickness": 0.2, - "conductivity": 1.95, - "density": 2240.0, - "specific_heat": 900.0, + "thickness": 0.1, + "conductivity": 0.9, + "density": 1920.0, + "specific_heat": 790.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.8, - "visible_absorptance": 0.8 + "solar_absorptance": 0.65, + "visible_absorptance": 0.65 }, { "type": "EnergyWindowMaterialGlazing", - "identifier": "Generic Low-e Glass", + "identifier": "Generic Clear Glass", "thickness": 0.006, - "solar_transmittance": 0.45, - "solar_reflectance": 0.36, - "solar_reflectance_back": 0.36, - "visible_transmittance": 0.71, - "visible_reflectance": 0.21, - "visible_reflectance_back": 0.21, + "solar_transmittance": 0.77, + "solar_reflectance": 0.07, + "solar_reflectance_back": 0.07, + "visible_transmittance": 0.88, + "visible_reflectance": 0.08, + "visible_reflectance_back": 0.08, "infrared_transmittance": 0.0, "emissivity": 0.84, - "emissivity_back": 0.047, + "emissivity_back": 0.84, "conductivity": 1.0, "dirt_correction": 1.0, "solar_diffusing": false - }, - { - "type": "EnergyMaterial", - "identifier": "Generic Acoustic Tile", - "roughness": "MediumSmooth", - "thickness": 0.02, - "conductivity": 0.06, - "density": 368.0, - "specific_heat": 590.0, - "thermal_absorptance": 0.9, - "solar_absorptance": 0.2, - "visible_absorptance": 0.2 - }, - { - "type": "EnergyMaterial", - "identifier": "Generic 50mm Insulation", - "roughness": "MediumRough", - "thickness": 0.05, - "conductivity": 0.03, - "density": 43.0, - "specific_heat": 1210.0, - "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 } ], "hvacs": [ @@ -437,27 +437,37 @@ "schedules": [ { "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Heating", + "identifier": "Generic Office Equipment", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", "values": [ - 15.6 + 0.2307553806, + 0.288107175, + 0.2307553806 ], "times": [ [ 0, 0 + ], + [ + 6, + 0 + ], + [ + 18, + 0 ] ], "interpolate": false }, { "type": "ScheduleDay", - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", "values": [ - 15.6 + 1.0 ], "times": [ [ @@ -469,47 +479,28 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", "values": [ - 15.6, - 17.6, - 19.6, - 21.0, - 15.6 + 0.0 ], "times": [ [ 0, 0 - ], - [ - 5, - 0 - ], - [ - 6, - 0 - ], - [ - 7, - 0 - ], - [ - 22, - 0 ] ], "interpolate": false }, { "type": "ScheduleDay", - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", "values": [ - 15.6, - 17.8, - 20.0, - 21.0, - 15.6 + 0.2307553806, + 0.381234796, + 0.476543495, + 0.3335804465, + 0.285926097, + 0.2307553806 ], "times": [ [ @@ -517,19 +508,23 @@ 0 ], [ - 5, + 6, 0 ], [ - 6, + 8, 0 ], [ - 7, + 12, 0 ], [ - 22, + 17, + 0 + ], + [ + 19, 0 ] ], @@ -537,13 +532,15 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", + "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", "values": [ - 15.6, - 17.8, - 20.0, - 21.0, - 15.6 + 0.3076738408, + 0.381234796, + 0.857778291, + 0.762469592, + 0.857778291, + 0.476543495, + 0.381234796 ], "times": [ [ @@ -551,30 +548,38 @@ 0 ], [ - 5, + 6, 0 ], [ - 6, + 8, 0 ], [ - 7, + 12, + 0 + ], + [ + 13, 0 ], [ 17, 0 + ], + [ + 18, + 0 ] ], "interpolate": false } ], - "default_day_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "default_day_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", "schedule_rules": [ { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", + "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", "apply_sunday": false, "apply_monday": true, "apply_tuesday": true, @@ -593,7 +598,7 @@ }, { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", + "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", "apply_sunday": false, "apply_monday": false, "apply_tuesday": false, @@ -611,42 +616,18 @@ ] } ], - "holiday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", - "summer_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", - "winter_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", - "schedule_type_limit": "Temperature" + "holiday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "summer_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", + "winter_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", + "schedule_type_limit": "Fractional" }, { "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Lighting", + "identifier": "Generic Office Infiltration", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", - "values": [ - 0.05, - 0.04311628, - 0.05 - ], - "times": [ - [ - 0, - 0 - ], - [ - 6, - 0 - ], - [ - 18, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", + "identifier": "OfficeMedium INFIL_SCH_PNNL_Default", "values": [ 1.0 ], @@ -660,28 +641,11 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", - "values": [ - 0.0 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", + "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", "values": [ - 0.05, - 0.08623256, - 0.25869768, - 0.12934884, - 0.04311628, - 0.05 + 1.0, + 0.25, + 1.0 ], "times": [ [ @@ -693,19 +657,7 @@ 0 ], [ - 8, - 0 - ], - [ - 12, - 0 - ], - [ - 17, - 0 - ], - [ - 19, + 22, 0 ] ], @@ -713,69 +665,82 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", + "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", "values": [ - 0.05, - 0.1, - 0.08623256, - 0.25869768, - 0.77609304, - 0.4311628, - 0.25869768, - 0.17246512, - 0.08623256, - 0.04311628 + 1.0, + 0.25, + 1.0 ], "times": [ [ 0, 0 ], - [ - 5, - 0 - ], [ 6, 0 ], [ - 7, + 18, 0 - ], + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy", + "values": [ + 1.0, + 0.25, + 1.0 + ], + "times": [ [ - 8, + 0, 0 ], [ - 17, + 6, 0 ], [ - 18, + 22, 0 - ], + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat", + "values": [ + 1.0, + 0.25, + 1.0 + ], + "times": [ [ - 20, + 0, 0 ], [ - 22, + 6, 0 ], [ - 23, + 18, 0 ] ], "interpolate": false } ], - "default_day_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", + "default_day_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", "schedule_rules": [ { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", + "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Wkdy", "apply_sunday": false, "apply_monday": true, "apply_tuesday": true, @@ -794,7 +759,7 @@ }, { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", + "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Sat", "apply_sunday": false, "apply_monday": false, "apply_tuesday": false, @@ -812,34 +777,20 @@ ] } ], - "holiday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", - "summer_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", - "winter_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", + "holiday_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", + "summer_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", + "winter_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", "schedule_type_limit": "Fractional" }, { "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Activity", + "identifier": "Generic Office Cooling", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "OfficeMedium ACTIVITY_SCH_Default", - "values": [ - 120.0 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium ACTIVITY_SCH_Default_SmrDsn", + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", "values": [ - 120.0 + 26.7 ], "times": [ [ @@ -851,58 +802,29 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium ACTIVITY_SCH_Default_WntrDsn", + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", "values": [ - 120.0 + 26.7, + 25.7, + 25.0, + 24.0, + 26.7 ], "times": [ [ 0, 0 - ] - ], - "interpolate": false - } - ], - "default_day_schedule": "OfficeMedium ACTIVITY_SCH_Default", - "holiday_schedule": "OfficeMedium ACTIVITY_SCH_Default", - "summer_designday_schedule": "OfficeMedium ACTIVITY_SCH_Default_SmrDsn", - "winter_designday_schedule": "OfficeMedium ACTIVITY_SCH_Default_WntrDsn", - "schedule_type_limit": "Activity Level" - }, - { - "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Infiltration", - "day_schedules": [ - { - "type": "ScheduleDay", - "identifier": "OfficeMedium INFIL_SCH_PNNL_Default", - "values": [ - 1.0 - ], - "times": [ + ], [ - 0, + 5, 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", - "values": [ - 1.0, - 0.25, - 1.0 - ], - "times": [ + ], [ - 0, + 6, 0 ], [ - 6, + 7, 0 ], [ @@ -914,45 +836,45 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", "values": [ - 1.0, - 0.25, - 1.0 + 26.7 ], "times": [ [ 0, 0 - ], - [ - 6, - 0 - ], - [ - 18, - 0 ] ], "interpolate": false }, { "type": "ScheduleDay", - "identifier": "OfficeMedium INFIL_SCH_PNNL_Wkdy", + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", "values": [ - 1.0, - 0.25, - 1.0 + 26.7, + 25.6, + 25.0, + 24.0, + 26.7 ], "times": [ [ 0, 0 ], + [ + 5, + 0 + ], [ 6, 0 ], + [ + 7, + 0 + ], [ 22, 0 @@ -962,34 +884,44 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium INFIL_SCH_PNNL_Sat", + "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", "values": [ - 1.0, - 0.25, - 1.0 + 26.7, + 25.7, + 25.0, + 24.0, + 26.7 ], "times": [ [ 0, 0 ], + [ + 5, + 0 + ], [ 6, 0 ], [ - 18, + 7, + 0 + ], + [ + 17, 0 ] ], "interpolate": false } ], - "default_day_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", + "default_day_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", "schedule_rules": [ { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Wkdy", + "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", "apply_sunday": false, "apply_monday": true, "apply_tuesday": true, @@ -1007,41 +939,94 @@ ] }, { - "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium INFIL_SCH_PNNL_Sat", - "apply_sunday": false, - "apply_monday": false, - "apply_tuesday": false, - "apply_wednesday": false, - "apply_thursday": false, - "apply_friday": false, - "apply_saturday": true, - "start_date": [ - 1, - 1 + "type": "ScheduleRuleAbridged", + "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", + "apply_sunday": false, + "apply_monday": false, + "apply_tuesday": false, + "apply_wednesday": false, + "apply_thursday": false, + "apply_friday": false, + "apply_saturday": true, + "start_date": [ + 1, + 1 + ], + "end_date": [ + 12, + 31 + ] + } + ], + "holiday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", + "summer_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", + "winter_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", + "schedule_type_limit": "Temperature" + }, + { + "type": "ScheduleRulesetAbridged", + "identifier": "Generic Office Activity", + "day_schedules": [ + { + "type": "ScheduleDay", + "identifier": "OfficeMedium ACTIVITY_SCH_Default", + "values": [ + 120.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium ACTIVITY_SCH_Default_SmrDsn", + "values": [ + 120.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium ACTIVITY_SCH_Default_WntrDsn", + "values": [ + 120.0 ], - "end_date": [ - 12, - 31 - ] + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false } ], - "holiday_schedule": "OfficeMedium INFIL_SCH_PNNL_Default", - "summer_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Wkdy_SmrDsn", - "winter_designday_schedule": "OfficeMedium INFIL_SCH_PNNL_Sat_WntrDsn", - "schedule_type_limit": "Fractional" + "default_day_schedule": "OfficeMedium ACTIVITY_SCH_Default", + "holiday_schedule": "OfficeMedium ACTIVITY_SCH_Default", + "summer_designday_schedule": "OfficeMedium ACTIVITY_SCH_Default_SmrDsn", + "winter_designday_schedule": "OfficeMedium ACTIVITY_SCH_Default_WntrDsn", + "schedule_type_limit": "Activity Level" }, { "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Equipment", + "identifier": "Generic Office Lighting", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", "values": [ - 0.2307553806, - 0.288107175, - 0.2307553806 + 0.05, + 0.04311628, + 0.05 ], "times": [ [ @@ -1061,7 +1046,7 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", "values": [ 1.0 ], @@ -1075,7 +1060,7 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", "values": [ 0.0 ], @@ -1089,14 +1074,14 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", "values": [ - 0.2307553806, - 0.381234796, - 0.476543495, - 0.3335804465, - 0.285926097, - 0.2307553806 + 0.05, + 0.08623256, + 0.25869768, + 0.12934884, + 0.04311628, + 0.05 ], "times": [ [ @@ -1128,15 +1113,18 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", + "identifier": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", "values": [ - 0.3076738408, - 0.381234796, - 0.857778291, - 0.762469592, - 0.857778291, - 0.476543495, - 0.381234796 + 0.05, + 0.1, + 0.08623256, + 0.25869768, + 0.77609304, + 0.4311628, + 0.25869768, + 0.17246512, + 0.08623256, + 0.04311628 ], "times": [ [ @@ -1144,19 +1132,19 @@ 0 ], [ - 6, + 5, 0 ], [ - 8, + 6, 0 ], [ - 12, + 7, 0 ], [ - 13, + 8, 0 ], [ @@ -1166,16 +1154,28 @@ [ 18, 0 + ], + [ + 20, + 0 + ], + [ + 22, + 0 + ], + [ + 23, + 0 ] ], "interpolate": false } ], - "default_day_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sun", + "default_day_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sun", "schedule_rules": [ { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Wkdy", + "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Wkdy", "apply_sunday": false, "apply_monday": true, "apply_tuesday": true, @@ -1194,7 +1194,7 @@ }, { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", + "schedule_day": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", "apply_sunday": false, "apply_monday": false, "apply_tuesday": false, @@ -1212,20 +1212,42 @@ ] } ], - "holiday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_Sat", - "summer_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_SmrDsn", - "winter_designday_schedule": "OfficeMedium BLDG_EQUIP_SCH_2013_WntrDsn", + "holiday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_Sat", + "summer_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_SmrDsn", + "winter_designday_schedule": "OfficeMedium BLDG_LIGHT_SCH_2013_WntrDsn", "schedule_type_limit": "Fractional" }, { "type": "ScheduleRulesetAbridged", - "identifier": "Generic Office Cooling", + "identifier": "Always On", "day_schedules": [ { "type": "ScheduleDay", - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", + "identifier": "Always On_Day Schedule", "values": [ - 26.7 + 1.0 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + } + ], + "default_day_schedule": "Always On_Day Schedule", + "schedule_type_limit": "Fractional" + }, + { + "type": "ScheduleRulesetAbridged", + "identifier": "Generic Office Heating", + "day_schedules": [ + { + "type": "ScheduleDay", + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "values": [ + 15.6 ], "times": [ [ @@ -1237,13 +1259,27 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", "values": [ - 26.7, - 25.7, - 25.0, - 24.0, - 26.7 + 15.6 + ], + "times": [ + [ + 0, + 0 + ] + ], + "interpolate": false + }, + { + "type": "ScheduleDay", + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", + "values": [ + 15.6, + 17.6, + 19.6, + 21.0, + 15.6 ], "times": [ [ @@ -1271,27 +1307,13 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", - "values": [ - 26.7 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - }, - { - "type": "ScheduleDay", - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", "values": [ - 26.7, - 25.6, - 25.0, - 24.0, - 26.7 + 15.6, + 17.8, + 20.0, + 21.0, + 15.6 ], "times": [ [ @@ -1319,13 +1341,13 @@ }, { "type": "ScheduleDay", - "identifier": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", + "identifier": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", "values": [ - 26.7, - 25.7, - 25.0, - 24.0, - 26.7 + 15.6, + 17.8, + 20.0, + 21.0, + 15.6 ], "times": [ [ @@ -1352,11 +1374,11 @@ "interpolate": false } ], - "default_day_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", + "default_day_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", "schedule_rules": [ { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Wkdy", + "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Wkdy", "apply_sunday": false, "apply_monday": true, "apply_tuesday": true, @@ -1375,7 +1397,7 @@ }, { "type": "ScheduleRuleAbridged", - "schedule_day": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Sat", + "schedule_day": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Sat", "apply_sunday": false, "apply_monday": false, "apply_tuesday": false, @@ -1393,33 +1415,11 @@ ] } ], - "holiday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default", - "summer_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_SmrDsn", - "winter_designday_schedule": "OfficeMedium CLGSETP_SCH_YES_OPTIMUM_Default_WntrDsn", + "holiday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default", + "summer_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_Default_SmrDsn", + "winter_designday_schedule": "OfficeMedium HTGSETP_SCH_YES_OPTIMUM_WntrDsn", "schedule_type_limit": "Temperature" }, - { - "type": "ScheduleRulesetAbridged", - "identifier": "Always On", - "day_schedules": [ - { - "type": "ScheduleDay", - "identifier": "Always On_Day Schedule", - "values": [ - 1.0 - ], - "times": [ - [ - 0, - 0 - ] - ], - "interpolate": false - } - ], - "default_day_schedule": "Always On_Day Schedule", - "schedule_type_limit": "Fractional" - }, { "type": "ScheduleRulesetAbridged", "identifier": "Generic Office Occupancy", @@ -1638,23 +1638,23 @@ }, { "type": "ScheduleTypeLimit", - "identifier": "Activity Level", - "lower_limit": 0.0, + "identifier": "Temperature", + "lower_limit": -273.15, "upper_limit": { "type": "NoLimit" }, "numeric_type": "Continuous", - "unit_type": "ActivityLevel" + "unit_type": "Temperature" }, { "type": "ScheduleTypeLimit", - "identifier": "Temperature", - "lower_limit": -273.15, + "identifier": "Activity Level", + "lower_limit": 0.0, "upper_limit": { "type": "NoLimit" }, "numeric_type": "Continuous", - "unit_type": "Temperature" + "unit_type": "ActivityLevel" } ] } \ No newline at end of file diff --git a/samples/model/model_energy_shoe_box.json b/samples/model/model_energy_shoe_box.json index 0b1fd2e..40a365c 100644 --- a/samples/model/model_energy_shoe_box.json +++ b/samples/model/model_energy_shoe_box.json @@ -90,22 +90,39 @@ ], "global_construction_set": "Default Generic Construction Set", "constructions": [ + { + "type": "ShadeConstruction", + "identifier": "Generic Shade", + "solar_reflectance": 0.35, + "visible_reflectance": 0.35, + "is_specular": false + }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exterior Door", + "identifier": "Generic Interior Wall", "layers": [ - "Generic Painted Metal", - "Generic 25mm Insulation", - "Generic Painted Metal" + "Generic Gypsum Board", + "Generic Wall Air Gap", + "Generic Gypsum Board" ] }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Floor", + "identifier": "Generic Underground Wall", "layers": [ - "Generic Acoustic Tile", - "Generic Ceiling Air Gap", - "Generic LW Concrete" + "Generic 50mm Insulation", + "Generic HW Concrete", + "Generic Wall Air Gap", + "Generic Gypsum Board" + ] + }, + { + "type": "OpaqueConstructionAbridged", + "identifier": "Generic Exterior Door", + "layers": [ + "Generic Painted Metal", + "Generic 25mm Insulation", + "Generic Painted Metal" ] }, { @@ -119,13 +136,11 @@ }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exterior Wall", + "identifier": "Generic Interior Floor", "layers": [ - "Generic Brick", - "Generic LW Concrete", - "Generic 50mm Insulation", - "Generic Wall Air Gap", - "Generic Gypsum Board" + "Generic Acoustic Tile", + "Generic Ceiling Air Gap", + "Generic LW Concrete" ] }, { @@ -136,22 +151,6 @@ "Generic HW Concrete" ] }, - { - "type": "AirBoundaryConstructionAbridged", - "identifier": "Generic Air Boundary", - "air_mixing_per_area": 0.1, - "air_mixing_schedule": "Always On" - }, - { - "type": "OpaqueConstructionAbridged", - "identifier": "Generic Exposed Floor", - "layers": [ - "Generic Painted Metal", - "Generic Ceiling Air Gap", - "Generic 50mm Insulation", - "Generic LW Concrete" - ] - }, { "type": "OpaqueConstructionAbridged", "identifier": "Generic Roof", @@ -165,30 +164,40 @@ }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Underground Roof", + "identifier": "Generic Interior Ceiling", "layers": [ - "Generic 50mm Insulation", - "Generic HW Concrete", + "Generic LW Concrete", "Generic Ceiling Air Gap", "Generic Acoustic Tile" ] }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Door", + "identifier": "Generic Exterior Wall", "layers": [ - "Generic 25mm Wood" + "Generic Brick", + "Generic LW Concrete", + "Generic 50mm Insulation", + "Generic Wall Air Gap", + "Generic Gypsum Board" ] }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Wall", + "identifier": "Generic Exposed Floor", "layers": [ - "Generic Gypsum Board", - "Generic Wall Air Gap", - "Generic Gypsum Board" + "Generic Painted Metal", + "Generic Ceiling Air Gap", + "Generic 50mm Insulation", + "Generic LW Concrete" ] }, + { + "type": "AirBoundaryConstructionAbridged", + "identifier": "Generic Air Boundary", + "air_mixing_per_area": 0.1, + "air_mixing_schedule": "Always On" + }, { "type": "WindowConstructionAbridged", "identifier": "Generic Single Pane", @@ -198,43 +207,51 @@ }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Interior Ceiling", + "identifier": "Generic Interior Door", "layers": [ - "Generic LW Concrete", - "Generic Ceiling Air Gap", - "Generic Acoustic Tile" + "Generic 25mm Wood" ] }, - { - "type": "ShadeConstruction", - "identifier": "Generic Shade", - "solar_reflectance": 0.35, - "visible_reflectance": 0.35, - "is_specular": false - }, { "type": "OpaqueConstructionAbridged", - "identifier": "Generic Underground Wall", + "identifier": "Generic Underground Roof", "layers": [ "Generic 50mm Insulation", "Generic HW Concrete", - "Generic Wall Air Gap", - "Generic Gypsum Board" + "Generic Ceiling Air Gap", + "Generic Acoustic Tile" ] } ], "materials": [ { "type": "EnergyMaterial", - "identifier": "Generic 25mm Insulation", - "roughness": "MediumRough", - "thickness": 0.05, - "conductivity": 0.03, - "density": 43.0, - "specific_heat": 1210.0, + "identifier": "Generic Acoustic Tile", + "roughness": "MediumSmooth", + "thickness": 0.02, + "conductivity": 0.06, + "density": 368.0, + "specific_heat": 590.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 + "solar_absorptance": 0.2, + "visible_absorptance": 0.2 + }, + { + "type": "EnergyWindowMaterialGlazing", + "identifier": "Generic Low-e Glass", + "thickness": 0.006, + "solar_transmittance": 0.45, + "solar_reflectance": 0.36, + "solar_reflectance_back": 0.36, + "visible_transmittance": 0.71, + "visible_reflectance": 0.21, + "visible_reflectance_back": 0.21, + "infrared_transmittance": 0.0, + "emissivity": 0.84, + "emissivity_back": 0.047, + "conductivity": 1.0, + "dirt_correction": 1.0, + "solar_diffusing": false }, { "type": "EnergyMaterial", @@ -250,27 +267,27 @@ }, { "type": "EnergyMaterial", - "identifier": "Generic Painted Metal", + "identifier": "Generic Wall Air Gap", "roughness": "Smooth", - "thickness": 0.0015, - "conductivity": 45.0, - "density": 7690.0, - "specific_heat": 410.0, + "thickness": 0.1, + "conductivity": 0.667, + "density": 1.28, + "specific_heat": 1000.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.5, - "visible_absorptance": 0.5 + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 }, { "type": "EnergyMaterial", - "identifier": "Generic 25mm Wood", - "roughness": "MediumSmooth", - "thickness": 0.0254, - "conductivity": 0.15, - "density": 608.0, - "specific_heat": 1630.0, + "identifier": "Generic 25mm Insulation", + "roughness": "MediumRough", + "thickness": 0.05, + "conductivity": 0.03, + "density": 43.0, + "specific_heat": 1210.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.5, - "visible_absorptance": 0.5 + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 }, { "type": "EnergyMaterial", @@ -284,52 +301,41 @@ "solar_absorptance": 0.7, "visible_absorptance": 0.7 }, - { - "type": "EnergyWindowMaterialGas", - "identifier": "Generic Window Air Gap", - "thickness": 0.0127, - "gas_type": "Air" - }, { "type": "EnergyMaterial", - "identifier": "Generic Wall Air Gap", - "roughness": "Smooth", - "thickness": 0.1, - "conductivity": 0.667, - "density": 1.28, - "specific_heat": 1000.0, + "identifier": "Generic HW Concrete", + "roughness": "MediumRough", + "thickness": 0.2, + "conductivity": 1.95, + "density": 2240.0, + "specific_heat": 900.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 + "solar_absorptance": 0.8, + "visible_absorptance": 0.8 }, { - "type": "EnergyWindowMaterialGlazing", - "identifier": "Generic Clear Glass", - "thickness": 0.006, - "solar_transmittance": 0.77, - "solar_reflectance": 0.07, - "solar_reflectance_back": 0.07, - "visible_transmittance": 0.88, - "visible_reflectance": 0.08, - "visible_reflectance_back": 0.08, - "infrared_transmittance": 0.0, - "emissivity": 0.84, - "emissivity_back": 0.84, - "conductivity": 1.0, - "dirt_correction": 1.0, - "solar_diffusing": false + "type": "EnergyMaterial", + "identifier": "Generic Gypsum Board", + "roughness": "MediumSmooth", + "thickness": 0.0127, + "conductivity": 0.16, + "density": 800.0, + "specific_heat": 1090.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.5, + "visible_absorptance": 0.5 }, { "type": "EnergyMaterial", - "identifier": "Generic Brick", + "identifier": "Generic 50mm Insulation", "roughness": "MediumRough", - "thickness": 0.1, - "conductivity": 0.9, - "density": 1920.0, - "specific_heat": 790.0, + "thickness": 0.05, + "conductivity": 0.03, + "density": 43.0, + "specific_heat": 1210.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.65, - "visible_absorptance": 0.65 + "solar_absorptance": 0.7, + "visible_absorptance": 0.7 }, { "type": "EnergyMaterial", @@ -345,68 +351,62 @@ }, { "type": "EnergyMaterial", - "identifier": "Generic Gypsum Board", + "identifier": "Generic 25mm Wood", "roughness": "MediumSmooth", - "thickness": 0.0127, - "conductivity": 0.16, - "density": 800.0, - "specific_heat": 1090.0, + "thickness": 0.0254, + "conductivity": 0.15, + "density": 608.0, + "specific_heat": 1630.0, "thermal_absorptance": 0.9, "solar_absorptance": 0.5, "visible_absorptance": 0.5 }, { "type": "EnergyMaterial", - "identifier": "Generic HW Concrete", + "identifier": "Generic Painted Metal", + "roughness": "Smooth", + "thickness": 0.0015, + "conductivity": 45.0, + "density": 7690.0, + "specific_heat": 410.0, + "thermal_absorptance": 0.9, + "solar_absorptance": 0.5, + "visible_absorptance": 0.5 + }, + { + "type": "EnergyWindowMaterialGas", + "identifier": "Generic Window Air Gap", + "thickness": 0.0127, + "gas_type": "Air" + }, + { + "type": "EnergyMaterial", + "identifier": "Generic Brick", "roughness": "MediumRough", - "thickness": 0.2, - "conductivity": 1.95, - "density": 2240.0, - "specific_heat": 900.0, + "thickness": 0.1, + "conductivity": 0.9, + "density": 1920.0, + "specific_heat": 790.0, "thermal_absorptance": 0.9, - "solar_absorptance": 0.8, - "visible_absorptance": 0.8 + "solar_absorptance": 0.65, + "visible_absorptance": 0.65 }, { "type": "EnergyWindowMaterialGlazing", - "identifier": "Generic Low-e Glass", + "identifier": "Generic Clear Glass", "thickness": 0.006, - "solar_transmittance": 0.45, - "solar_reflectance": 0.36, - "solar_reflectance_back": 0.36, - "visible_transmittance": 0.71, - "visible_reflectance": 0.21, - "visible_reflectance_back": 0.21, + "solar_transmittance": 0.77, + "solar_reflectance": 0.07, + "solar_reflectance_back": 0.07, + "visible_transmittance": 0.88, + "visible_reflectance": 0.08, + "visible_reflectance_back": 0.08, "infrared_transmittance": 0.0, "emissivity": 0.84, - "emissivity_back": 0.047, + "emissivity_back": 0.84, "conductivity": 1.0, "dirt_correction": 1.0, "solar_diffusing": false - }, - { - "type": "EnergyMaterial", - "identifier": "Generic Acoustic Tile", - "roughness": "MediumSmooth", - "thickness": 0.02, - "conductivity": 0.06, - "density": 368.0, - "specific_heat": 590.0, - "thermal_absorptance": 0.9, - "solar_absorptance": 0.2, - "visible_absorptance": 0.2 - }, - { - "type": "EnergyMaterial", - "identifier": "Generic 50mm Insulation", - "roughness": "MediumRough", - "thickness": 0.05, - "conductivity": 0.03, - "density": 43.0, - "specific_heat": 1210.0, - "thermal_absorptance": 0.9, - "solar_absorptance": 0.7, - "visible_absorptance": 0.7 } ], "hvacs": [], diff --git a/samples/modifier/modifier_bsdf_klemsfull.json b/samples/modifier/modifier_bsdf_klemsfull.json new file mode 100644 index 0000000..43c27d1 --- /dev/null +++ b/samples/modifier/modifier_bsdf_klemsfull.json @@ -0,0 +1,16 @@ +{ + "modifier": { + "type": "void" + }, + "type": "BSDF", + "identifier": "klemsfull", + "up_orientation": { + "type": "Vector3D", + "x": 0.01, + "y": 0.01, + "z": 1.0 + }, + "thickness": 0.0, + "function_file": ".", + "transform": null, + "bsdf_data": \ No newline at end of file diff --git a/samples/modifier/modifier_glass_air_boundary.json b/samples/modifier/modifier_glass_air_boundary.json new file mode 100644 index 0000000..c20037a --- /dev/null +++ b/samples/modifier/modifier_glass_air_boundary.json @@ -0,0 +1,12 @@ +{ + "modifier": { + "type": "void" + }, + "type": "glass", + "identifier": "air_boundary", + "r_transmissivity": 1.0, + "g_transmissivity": 1.0, + "b_transmissivity": 1.0, + "refraction_index": null, + "dependencies": [] +} \ No newline at end of file diff --git a/samples/modifier/modifier_glass_generic_exterior_window.json b/samples/modifier/modifier_glass_generic_exterior_window.json new file mode 100644 index 0000000..d2b4a40 --- /dev/null +++ b/samples/modifier/modifier_glass_generic_exterior_window.json @@ -0,0 +1,12 @@ +{ + "modifier": { + "type": "void" + }, + "type": "glass", + "identifier": "generic_exterior_window_vis_0.64", + "r_transmissivity": 0.6975761815384331, + "g_transmissivity": 0.6975761815384331, + "b_transmissivity": 0.6975761815384331, + "refraction_index": null, + "dependencies": [] +} \ No newline at end of file diff --git a/samples/modifier/modifier_glow_white.json b/samples/modifier/modifier_glow_white.json new file mode 100644 index 0000000..3efb315 --- /dev/null +++ b/samples/modifier/modifier_glow_white.json @@ -0,0 +1,12 @@ +{ + "modifier": { + "type": "void" + }, + "type": "glow", + "identifier": "white_glow", + "r_emittance": 1.0, + "g_emittance": 1.0, + "b_emittance": 1.0, + "max_radius": 0.0, + "dependencies": [] +} \ No newline at end of file diff --git a/samples/modifier/modifier_light_green_spotlight.json b/samples/modifier/modifier_light_green_spotlight.json new file mode 100644 index 0000000..7207a48 --- /dev/null +++ b/samples/modifier/modifier_light_green_spotlight.json @@ -0,0 +1,11 @@ +{ + "modifier": { + "type": "void" + }, + "type": "light", + "identifier": "Green_Spotlight", + "r_emittance": 0.0, + "g_emittance": 1.0, + "b_emittance": 0.0, + "dependencies": [] +} \ No newline at end of file diff --git a/samples/modifier/modifier_plastic_black.json b/samples/modifier/modifier_plastic_black.json new file mode 100644 index 0000000..0700527 --- /dev/null +++ b/samples/modifier/modifier_plastic_black.json @@ -0,0 +1,13 @@ +{ + "modifier": { + "type": "void" + }, + "type": "plastic", + "identifier": "black", + "r_reflectance": 0.0, + "g_reflectance": 0.0, + "b_reflectance": 0.0, + "specularity": 0.0, + "roughness": 0.0, + "dependencies": [] +} \ No newline at end of file diff --git a/samples/modifier/modifier_plastic_generic_ceiling.json b/samples/modifier/modifier_plastic_generic_ceiling.json new file mode 100644 index 0000000..07908ca --- /dev/null +++ b/samples/modifier/modifier_plastic_generic_ceiling.json @@ -0,0 +1,13 @@ +{ + "modifier": { + "type": "void" + }, + "type": "plastic", + "identifier": "generic_ceiling_0.80", + "r_reflectance": 0.8, + "g_reflectance": 0.8, + "b_reflectance": 0.8, + "specularity": 0.0, + "roughness": 0.0, + "dependencies": [] +} \ No newline at end of file diff --git a/samples/modifier/modifier_plastic_generic_wall.json b/samples/modifier/modifier_plastic_generic_wall.json new file mode 100644 index 0000000..6654a2d --- /dev/null +++ b/samples/modifier/modifier_plastic_generic_wall.json @@ -0,0 +1,13 @@ +{ + "modifier": { + "type": "void" + }, + "type": "plastic", + "identifier": "generic_wall_0.50", + "r_reflectance": 0.5, + "g_reflectance": 0.5, + "b_reflectance": 0.5, + "specularity": 0.0, + "roughness": 0.0, + "dependencies": [] +} \ No newline at end of file diff --git a/samples/modifier/modifier_trans_tree_foliage.json b/samples/modifier/modifier_trans_tree_foliage.json new file mode 100644 index 0000000..3b78da3 --- /dev/null +++ b/samples/modifier/modifier_trans_tree_foliage.json @@ -0,0 +1,15 @@ +{ + "modifier": { + "type": "void" + }, + "type": "trans", + "identifier": "Foliage_0.3", + "r_reflectance": 0.3, + "g_reflectance": 0.3, + "b_reflectance": 0.3, + "specularity": 0.0, + "roughness": 0.1, + "transmitted_diff": 0.15, + "transmitted_spec": 0.15, + "dependencies": [] +} \ No newline at end of file diff --git a/samples/modifier_set/modifierset_abridged_complete.json b/samples/modifier_set/modifierset_abridged_complete.json new file mode 100644 index 0000000..9458072 --- /dev/null +++ b/samples/modifier_set/modifierset_abridged_complete.json @@ -0,0 +1,40 @@ +{ + "type": "ModifierSetAbridged", + "identifier": "Generic_Interior_Visible_Modifier_Set", + "wall_set": { + "interior_modifier": "generic_wall_0.50", + "exterior_modifier": "generic_wall_0.50", + "type": "WallModifierSetAbridged" + }, + "floor_set": { + "interior_modifier": "generic_floor_0.20", + "exterior_modifier": "generic_floor_0.20", + "type": "FloorModifierSetAbridged" + }, + "roof_ceiling_set": { + "interior_modifier": "generic_ceiling_0.80", + "exterior_modifier": "generic_ceiling_0.80", + "type": "RoofCeilingModifierSetAbridged" + }, + "aperture_set": { + "interior_modifier": "generic_interior_window_vis_0.88", + "skylight_modifier": "generic_exterior_window_vis_0.64", + "operable_modifier": "generic_exterior_window_vis_0.64", + "type": "ApertureModifierSetAbridged", + "window_modifier": "generic_exterior_window_vis_0.64" + }, + "door_set": { + "exterior_modifier": "generic_opaque_door_0.50", + "overhead_modifier": "generic_opaque_door_0.50", + "interior_modifier": "generic_opaque_door_0.50", + "exterior_glass_modifier": "generic_exterior_window_vis_0.64", + "interior_glass_modifier": "generic_interior_window_vis_0.88", + "type": "DoorModifierSetAbridged" + }, + "shade_set": { + "interior_modifier": "generic_interior_shade_0.50", + "exterior_modifier": "generic_exterior_shade_0.35", + "type": "ShadeModifierSetAbridged" + }, + "air_boundary_modifier": "air_boundary" +} \ No newline at end of file diff --git a/samples/modifier_set/modifierset_abridged_partial_exterior.json b/samples/modifier_set/modifierset_abridged_partial_exterior.json new file mode 100644 index 0000000..5316797 --- /dev/null +++ b/samples/modifier_set/modifierset_abridged_partial_exterior.json @@ -0,0 +1,40 @@ +{ + "type": "ModifierSetAbridged", + "identifier": "Generic_Exterior_Visible_Modifier_Set", + "wall_set": { + "interior_modifier": null, + "exterior_modifier": "generic_wall_exterior_side_0.35", + "type": "WallModifierSetAbridged" + }, + "floor_set": { + "interior_modifier": null, + "exterior_modifier": "generic_floor_exterior_side_0.50", + "type": "FloorModifierSetAbridged" + }, + "roof_ceiling_set": { + "interior_modifier": null, + "exterior_modifier": "generic_ceiling_exterior_side_0.35", + "type": "RoofCeilingModifierSetAbridged" + }, + "aperture_set": { + "interior_modifier": null, + "skylight_modifier": null, + "operable_modifier": null, + "type": "ApertureModifierSetAbridged", + "window_modifier": null + }, + "door_set": { + "exterior_modifier": null, + "overhead_modifier": null, + "interior_modifier": null, + "exterior_glass_modifier": null, + "interior_glass_modifier": null, + "type": "DoorModifierSetAbridged" + }, + "shade_set": { + "interior_modifier": null, + "exterior_modifier": null, + "type": "ShadeModifierSetAbridged" + }, + "air_boundary_modifier": null +} \ No newline at end of file diff --git a/samples/modifier_set/modifierset_complete.json b/samples/modifier_set/modifierset_complete.json new file mode 100644 index 0000000..61ba760 --- /dev/null +++ b/samples/modifier_set/modifierset_complete.json @@ -0,0 +1,249 @@ +{ + "type": "ModifierSet", + "identifier": "Generic_Interior_Visible_Modifier_Set", + "wall_set": { + "interior_modifier": { + "modifier": { + "type": "void" + }, + "type": "plastic", + "identifier": "generic_wall_0.50", + "r_reflectance": 0.5, + "g_reflectance": 0.5, + "b_reflectance": 0.5, + "specularity": 0.0, + "roughness": 0.0, + "dependencies": [] + }, + "exterior_modifier": { + "modifier": { + "type": "void" + }, + "type": "plastic", + "identifier": "generic_wall_0.50", + "r_reflectance": 0.5, + "g_reflectance": 0.5, + "b_reflectance": 0.5, + "specularity": 0.0, + "roughness": 0.0, + "dependencies": [] + }, + "type": "WallModifierSet" + }, + "floor_set": { + "interior_modifier": { + "modifier": { + "type": "void" + }, + "type": "plastic", + "identifier": "generic_floor_0.20", + "r_reflectance": 0.2, + "g_reflectance": 0.2, + "b_reflectance": 0.2, + "specularity": 0.0, + "roughness": 0.0, + "dependencies": [] + }, + "exterior_modifier": { + "modifier": { + "type": "void" + }, + "type": "plastic", + "identifier": "generic_floor_0.20", + "r_reflectance": 0.2, + "g_reflectance": 0.2, + "b_reflectance": 0.2, + "specularity": 0.0, + "roughness": 0.0, + "dependencies": [] + }, + "type": "FloorModifierSet" + }, + "roof_ceiling_set": { + "interior_modifier": { + "modifier": { + "type": "void" + }, + "type": "plastic", + "identifier": "generic_ceiling_0.80", + "r_reflectance": 0.8, + "g_reflectance": 0.8, + "b_reflectance": 0.8, + "specularity": 0.0, + "roughness": 0.0, + "dependencies": [] + }, + "exterior_modifier": { + "modifier": { + "type": "void" + }, + "type": "plastic", + "identifier": "generic_ceiling_0.80", + "r_reflectance": 0.8, + "g_reflectance": 0.8, + "b_reflectance": 0.8, + "specularity": 0.0, + "roughness": 0.0, + "dependencies": [] + }, + "type": "RoofCeilingModifierSet" + }, + "aperture_set": { + "interior_modifier": { + "modifier": { + "type": "void" + }, + "type": "glass", + "identifier": "generic_interior_window_vis_0.88", + "r_transmissivity": 0.9584154328610596, + "g_transmissivity": 0.9584154328610596, + "b_transmissivity": 0.9584154328610596, + "refraction_index": null, + "dependencies": [] + }, + "skylight_modifier": { + "modifier": { + "type": "void" + }, + "type": "glass", + "identifier": "generic_exterior_window_vis_0.64", + "r_transmissivity": 0.6975761815384331, + "g_transmissivity": 0.6975761815384331, + "b_transmissivity": 0.6975761815384331, + "refraction_index": null, + "dependencies": [] + }, + "operable_modifier": { + "modifier": { + "type": "void" + }, + "type": "glass", + "identifier": "generic_exterior_window_vis_0.64", + "r_transmissivity": 0.6975761815384331, + "g_transmissivity": 0.6975761815384331, + "b_transmissivity": 0.6975761815384331, + "refraction_index": null, + "dependencies": [] + }, + "type": "ApertureModifierSet", + "window_modifier": { + "modifier": { + "type": "void" + }, + "type": "glass", + "identifier": "generic_exterior_window_vis_0.64", + "r_transmissivity": 0.6975761815384331, + "g_transmissivity": 0.6975761815384331, + "b_transmissivity": 0.6975761815384331, + "refraction_index": null, + "dependencies": [] + } + }, + "door_set": { + "exterior_modifier": { + "modifier": { + "type": "void" + }, + "type": "plastic", + "identifier": "generic_opaque_door_0.50", + "r_reflectance": 0.5, + "g_reflectance": 0.5, + "b_reflectance": 0.5, + "specularity": 0.0, + "roughness": 0.0, + "dependencies": [] + }, + "overhead_modifier": { + "modifier": { + "type": "void" + }, + "type": "plastic", + "identifier": "generic_opaque_door_0.50", + "r_reflectance": 0.5, + "g_reflectance": 0.5, + "b_reflectance": 0.5, + "specularity": 0.0, + "roughness": 0.0, + "dependencies": [] + }, + "interior_modifier": { + "modifier": { + "type": "void" + }, + "type": "plastic", + "identifier": "generic_opaque_door_0.50", + "r_reflectance": 0.5, + "g_reflectance": 0.5, + "b_reflectance": 0.5, + "specularity": 0.0, + "roughness": 0.0, + "dependencies": [] + }, + "exterior_glass_modifier": { + "modifier": { + "type": "void" + }, + "type": "glass", + "identifier": "generic_exterior_window_vis_0.64", + "r_transmissivity": 0.6975761815384331, + "g_transmissivity": 0.6975761815384331, + "b_transmissivity": 0.6975761815384331, + "refraction_index": null, + "dependencies": [] + }, + "interior_glass_modifier": { + "modifier": { + "type": "void" + }, + "type": "glass", + "identifier": "generic_interior_window_vis_0.88", + "r_transmissivity": 0.9584154328610596, + "g_transmissivity": 0.9584154328610596, + "b_transmissivity": 0.9584154328610596, + "refraction_index": null, + "dependencies": [] + }, + "type": "DoorModifierSet" + }, + "shade_set": { + "interior_modifier": { + "modifier": { + "type": "void" + }, + "type": "plastic", + "identifier": "generic_interior_shade_0.50", + "r_reflectance": 0.5, + "g_reflectance": 0.5, + "b_reflectance": 0.5, + "specularity": 0.0, + "roughness": 0.0, + "dependencies": [] + }, + "exterior_modifier": { + "modifier": { + "type": "void" + }, + "type": "plastic", + "identifier": "generic_exterior_shade_0.35", + "r_reflectance": 0.35, + "g_reflectance": 0.35, + "b_reflectance": 0.35, + "specularity": 0.0, + "roughness": 0.0, + "dependencies": [] + }, + "type": "ShadeModifierSet" + }, + "air_boundary_modifier": { + "modifier": { + "type": "void" + }, + "type": "glass", + "identifier": "air_boundary", + "r_transmissivity": 1.0, + "g_transmissivity": 1.0, + "b_transmissivity": 1.0, + "refraction_index": null, + "dependencies": [] + } +} \ No newline at end of file diff --git a/samples/modifier_set/modifierset_partial_exterior.json b/samples/modifier_set/modifierset_partial_exterior.json new file mode 100644 index 0000000..a74b593 --- /dev/null +++ b/samples/modifier_set/modifierset_partial_exterior.json @@ -0,0 +1,76 @@ +{ + "type": "ModifierSet", + "identifier": "Generic_Exterior_Visible_Modifier_Set", + "wall_set": { + "interior_modifier": null, + "exterior_modifier": { + "modifier": { + "type": "void" + }, + "type": "plastic", + "identifier": "generic_wall_exterior_side_0.35", + "r_reflectance": 0.35, + "g_reflectance": 0.35, + "b_reflectance": 0.35, + "specularity": 0.0, + "roughness": 0.0, + "dependencies": [] + }, + "type": "WallModifierSet" + }, + "floor_set": { + "interior_modifier": null, + "exterior_modifier": { + "modifier": { + "type": "void" + }, + "type": "plastic", + "identifier": "generic_floor_exterior_side_0.50", + "r_reflectance": 0.5, + "g_reflectance": 0.5, + "b_reflectance": 0.5, + "specularity": 0.0, + "roughness": 0.0, + "dependencies": [] + }, + "type": "FloorModifierSet" + }, + "roof_ceiling_set": { + "interior_modifier": null, + "exterior_modifier": { + "modifier": { + "type": "void" + }, + "type": "plastic", + "identifier": "generic_ceiling_exterior_side_0.35", + "r_reflectance": 0.35, + "g_reflectance": 0.35, + "b_reflectance": 0.35, + "specularity": 0.0, + "roughness": 0.0, + "dependencies": [] + }, + "type": "RoofCeilingModifierSet" + }, + "aperture_set": { + "interior_modifier": null, + "skylight_modifier": null, + "operable_modifier": null, + "type": "ApertureModifierSet", + "window_modifier": null + }, + "door_set": { + "exterior_modifier": null, + "overhead_modifier": null, + "interior_modifier": null, + "exterior_glass_modifier": null, + "interior_glass_modifier": null, + "type": "DoorModifierSet" + }, + "shade_set": { + "interior_modifier": null, + "exterior_modifier": null, + "type": "ShadeModifierSet" + }, + "air_boundary_modifier": null +} \ No newline at end of file diff --git a/samples/schedule/schedule_fixedinterval_random_annual.json b/samples/schedule/schedule_fixedinterval_random_annual.json index 9f22a61..b63b820 100644 --- a/samples/schedule/schedule_fixedinterval_random_annual.json +++ b/samples/schedule/schedule_fixedinterval_random_annual.json @@ -2,8766 +2,8766 @@ "type": "ScheduleFixedIntervalAbridged", "identifier": "Random Occupancy", "values": [ - 0.0495, - 0.2916, - 0.8485, - 0.8237, - 0.4648, - 0.9082, - 0.9847, - 0.4773, - 0.2501, - 0.552, - 0.6511, - 0.8781, - 0.622, - 0.9086, - 0.7864, - 0.122, - 0.6428, - 0.6089, - 0.2905, - 0.2806, - 0.0162, - 0.3295, - 0.2572, - 0.5848, - 0.7879, - 0.9268, - 0.2671, - 0.7807, - 0.3146, + 0.5406, + 0.2932, + 0.3763, + 0.2073, + 0.7391, + 0.7673, + 0.9298, + 0.8943, + 0.9718, + 0.8468, + 0.2044, + 0.3794, + 0.8918, + 0.4762, + 0.7593, + 0.8559, + 0.7558, + 0.1812, + 0.2434, + 0.2425, + 0.6384, + 0.8404, + 0.2984, + 0.5295, + 0.9457, + 0.8415, + 0.6565, 0.4194, - 0.5556, - 0.8413, - 0.7108, - 0.0665, - 0.4809, - 0.0031, - 0.1053, - 0.0234, - 0.233, - 0.8612, - 0.4677, - 0.5543, - 0.0145, - 0.1072, - 0.4921, - 0.6732, - 0.9608, - 0.8377, - 0.4155, - 0.8318, - 0.6781, - 0.0509, - 0.3286, - 0.864, - 0.2254, - 0.2656, - 0.9935, - 0.6434, - 0.0064, - 0.6129, - 0.6324, - 0.2478, - 0.5296, - 0.2475, - 0.3066, - 0.903, - 0.2619, - 0.5033, - 0.291, + 0.9593, + 0.9607, + 0.2483, + 0.1251, + 0.0405, + 0.542, + 0.3414, + 0.2678, + 0.3302, + 0.6321, + 0.5331, + 0.0496, + 0.0052, + 0.8737, + 0.0887, + 0.1852, + 0.5477, + 0.5685, + 0.5423, + 0.9068, + 0.5394, + 0.2801, + 0.6197, + 0.2583, + 0.1087, + 0.8914, + 0.0465, + 0.928, + 0.0084, + 0.7181, + 0.5328, + 0.8742, + 0.0987, + 0.3671, + 0.826, + 0.8905, + 0.7904, + 0.6846, + 0.707, + 0.9752, + 0.1449, + 0.4664, + 0.4683, + 0.7995, + 0.4343, + 0.6952, + 0.2782, + 0.2116, + 0.7101, + 0.4883, + 0.3396, + 0.4135, + 0.0727, + 0.1947, + 0.6979, + 0.2531, + 0.0174, + 0.2829, + 0.5766, + 0.9901, + 0.4748, + 0.9007, + 0.5013, + 0.3152, + 0.0696, + 0.038, + 0.9423, + 0.9323, + 0.05, + 0.1871, + 0.9377, + 0.9799, + 0.2723, + 0.6719, + 0.0072, + 0.7101, + 0.4546, + 0.5327, + 0.6807, + 0.8302, + 0.5268, + 0.9764, + 0.5867, + 0.1938, + 0.5635, + 0.3357, + 0.3998, + 0.9254, + 0.5337, + 0.9797, + 0.9615, + 0.7849, + 0.1724, + 0.8255, + 0.3626, + 0.0487, + 0.8677, + 0.7557, + 0.8923, + 0.5284, + 0.1006, + 0.6919, + 0.2066, + 0.2175, + 0.2444, + 0.0404, + 0.4741, + 0.6412, + 0.6304, + 0.3615, + 0.382, + 0.3503, + 0.3684, + 0.2704, + 0.2519, + 0.4059, + 0.0208, + 0.7844, + 0.5993, + 0.1213, + 0.3059, + 0.2455, + 0.7142, + 0.434, + 0.5294, + 0.6993, + 0.8427, + 0.3001, + 0.9598, + 0.7077, + 0.7387, + 0.6833, + 0.9647, + 0.9977, + 0.7235, + 0.6278, + 0.3091, + 0.0069, + 0.4857, + 0.3718, + 0.2899, + 0.5567, + 0.9845, + 0.8905, + 0.7692, + 0.7549, + 0.2818, + 0.2518, + 0.8586, + 0.3596, + 0.7972, + 0.0204, + 0.4585, 0.2563, - 0.4724, - 0.3124, - 0.9212, - 0.7479, - 0.2561, - 0.002, - 0.4894, - 0.468, - 0.3607, - 0.6976, - 0.4795, - 0.5134, - 0.641, + 0.4237, + 0.5472, + 0.0962, + 0.1661, + 0.6831, + 0.9106, + 0.1553, + 0.2002, + 0.2416, + 0.6397, + 0.4275, + 0.6808, + 0.1224, + 0.3965, + 0.1534, + 0.2449, + 0.627, + 0.4909, + 0.3783, + 0.9733, + 0.5862, + 0.7236, + 0.8194, + 0.5544, + 0.6427, + 0.324, + 0.9944, + 0.1701, + 0.8797, + 0.4769, + 0.6875, + 0.0201, + 0.5543, + 0.339, + 0.7334, + 0.9961, + 0.2823, + 0.7351, + 0.7934, + 0.9411, + 0.2132, + 0.0112, + 0.8699, + 0.5534, + 0.8526, + 0.1155, + 0.6123, + 0.0177, 0.9404, - 0.2018, - 0.7879, - 0.6377, - 0.3993, - 0.0113, - 0.269, - 0.2904, - 0.572, - 0.0837, - 0.2646, - 0.1505, - 0.9717, - 0.85, - 0.0894, - 0.5049, - 0.6358, - 0.837, - 0.6019, - 0.335, - 0.2258, - 0.4542, - 0.0311, - 0.169, - 0.86, - 0.5044, - 0.146, - 0.2866, - 0.7207, - 0.5777, - 0.5539, - 0.6078, - 0.4919, - 0.9158, - 0.215, - 0.8769, - 0.117, - 0.9305, - 0.7797, - 0.5491, - 0.1916, - 0.0355, - 0.0464, - 0.7924, - 0.6686, - 0.0398, - 0.1374, - 0.6682, - 0.9378, - 0.0028, - 0.2469, - 0.3023, - 0.9187, - 0.0428, - 0.8748, - 0.4037, - 0.7131, - 0.5403, - 0.4214, - 0.4058, - 0.8187, - 0.6292, - 0.4611, - 0.2811, - 0.7824, - 0.2455, - 0.0037, + 0.3799, + 0.3491, + 0.0137, + 0.7775, + 0.5971, + 0.7332, + 0.7813, + 0.7187, + 0.5848, + 0.2175, 0.6093, - 0.6348, - 0.1002, - 0.6756, - 0.07, - 0.1375, - 0.0307, - 0.2388, - 0.0089, - 0.4123, - 0.8228, - 0.5455, - 0.2181, - 0.2247, + 0.0815, + 0.3391, + 0.6068, + 0.5694, + 0.252, + 0.0843, + 0.8282, + 0.8372, + 0.1441, + 0.5125, + 0.5752, + 0.123, + 0.4536, + 0.292, + 0.1171, + 0.9662, + 0.8365, + 0.142, + 0.4224, + 0.995, + 0.2207, + 0.153, + 0.4066, + 0.6169, + 0.6938, + 0.2708, + 0.4305, + 0.1441, + 0.9185, + 0.5868, + 0.3265, + 0.7717, + 0.6707, + 0.0884, 0.5516, - 0.2981, - 0.4917, - 0.4388, - 0.0129, - 0.1626, - 0.1003, - 0.942, - 0.3073, - 0.8622, - 0.8236, - 0.7654, - 0.7791, - 0.9915, - 0.7618, - 0.0643, - 0.3922, - 0.4592, - 0.4955, - 0.1362, - 0.3727, - 0.2839, - 0.9002, - 0.2093, - 0.6955, - 0.9286, - 0.8927, - 0.8455, - 0.3804, - 0.3248, - 0.7333, - 0.1986, - 0.58, - 0.4112, - 0.1776, + 0.1224, + 0.4695, + 0.7609, + 0.8116, + 0.295, + 0.6726, + 0.6269, + 0.011, + 0.3134, + 0.1171, + 0.825, + 0.0432, + 0.6073, + 0.6705, + 0.4048, + 0.0296, + 0.9082, + 0.6844, + 0.7263, + 0.9186, + 0.4373, + 0.0443, + 0.6071, + 0.9626, + 0.5007, + 0.0877, + 0.7953, + 0.3361, + 0.1325, + 0.1956, + 0.277, + 0.7264, + 0.5182, + 0.1708, + 0.4139, + 0.4255, + 0.7861, + 0.4782, + 0.7287, + 0.0573, + 0.8741, + 0.8555, + 0.6761, + 0.2325, + 0.5577, + 0.8727, + 0.5805, + 0.2885, + 0.0009, + 0.4364, + 0.6854, + 0.9727, + 0.135, + 0.8763, + 0.45, + 0.3882, + 0.8306, + 0.1169, + 0.9641, + 0.1917, + 0.572, + 0.1677, + 0.1977, + 0.3615, + 0.382, + 0.988, + 0.1612, + 0.4821, + 0.759, + 0.469, + 0.2943, + 0.0106, + 0.6256, + 0.7075, + 0.9105, + 0.3579, + 0.2864, + 0.6593, + 0.3549, + 0.9837, + 0.6225, + 0.5658, + 0.4545, + 0.0255, + 0.861, + 0.0371, + 0.0811, + 0.067, + 0.3482, + 0.7672, + 0.2289, + 0.7745, + 0.5372, + 0.9697, + 0.1665, + 0.3221, + 0.7361, + 0.5681, + 0.4121, + 0.3182, + 0.9119, + 0.6335, + 0.4512, 0.8152, - 0.1312, - 0.0303, - 0.9415, - 0.3552, - 0.6798, - 0.5682, - 0.0301, - 0.4469, - 0.2521, + 0.1097, + 0.3188, + 0.865, + 0.3246, + 0.3103, + 0.8847, + 0.873, + 0.5574, + 0.8618, + 0.0533, + 0.1284, + 0.6866, + 0.9088, + 0.0411, + 0.0007, + 0.0894, + 0.5734, + 0.6113, + 0.0069, + 0.8903, + 0.0402, + 0.0578, + 0.8156, + 0.5837, + 0.8888, + 0.7426, + 0.0918, + 0.6598, + 0.3549, + 0.4916, 0.568, - 0.2938, - 0.2636, - 0.2918, - 0.9953, - 0.291, - 0.1687, - 0.1514, - 0.9345, - 0.9831, - 0.8133, - 0.1468, - 0.9423, - 0.5616, - 0.3596, - 0.9233, - 0.5862, - 0.3452, - 0.6006, - 0.8453, - 0.094, - 0.0288, - 0.5499, - 0.5859, - 0.3632, - 0.9861, - 0.3995, - 0.1227, - 0.9401, - 0.6783, - 0.81, - 0.97, - 0.1633, - 0.4076, - 0.1003, - 0.7305, - 0.5597, - 0.5798, - 0.1573, + 0.8814, + 0.1441, + 0.8067, + 0.5339, + 0.6207, + 0.1614, + 0.9127, + 0.9977, + 0.0575, + 0.0006, + 0.9311, + 0.1581, + 0.6991, + 0.4658, + 0.8759, + 0.403, + 0.786, + 0.1054, + 0.1675, + 0.7292, + 0.0577, + 0.2275, + 0.8702, + 0.6159, + 0.3459, + 0.4882, + 0.7533, + 0.3146, + 0.4, + 0.8588, + 0.2453, + 0.3016, + 0.6547, + 0.884, + 0.2839, + 0.0906, + 0.9408, + 0.9039, + 0.385, + 0.1758, + 0.8897, + 0.6652, + 0.2937, + 0.7445, + 0.6081, + 0.1638, + 0.4717, + 0.4122, + 0.1991, + 0.185, + 0.2576, + 0.5513, + 0.039, + 0.1276, + 0.2759, + 0.7445, + 0.4132, + 0.7937, + 0.7217, 0.708, - 0.7214, - 0.9575, - 0.259, - 0.3122, - 0.1803, - 0.5549, - 0.9134, - 0.5913, - 0.8634, - 0.719, - 0.7563, - 0.3123, - 0.8261, - 0.8765, - 0.0897, - 0.7977, - 0.5282, - 0.9049, - 0.073, - 0.6637, - 0.6419, - 0.1968, - 0.1196, - 0.9236, - 0.957, - 0.9531, - 0.679, - 0.6277, - 0.4022, - 0.9929, - 0.381, - 0.4841, - 0.378, - 0.4808, - 0.5792, - 0.7588, - 0.2445, - 0.081, - 0.1956, - 0.4216, - 0.2712, - 0.7194, - 0.9568, - 0.3535, - 0.7548, - 0.0604, - 0.6985, - 0.4744, - 0.124, + 0.3908, + 0.7114, + 0.4189, + 0.9667, + 0.6735, + 0.5415, + 0.6044, + 0.3838, + 0.7183, + 0.9283, + 0.4912, + 0.6959, 0.2511, - 0.4824, - 0.4994, - 0.8791, - 0.807, - 0.3247, - 0.4282, - 0.9424, - 0.7556, - 0.7035, - 0.4476, - 0.4552, - 0.1652, - 0.9113, - 0.3147, - 0.4047, - 0.1216, - 0.1695, - 0.3559, - 0.2638, - 0.8122, - 0.0651, - 0.2462, - 0.9115, - 0.5083, - 0.2874, - 0.8039, - 0.8585, - 0.2699, - 0.2107, - 0.8219, - 0.4274, - 0.7059, + 0.3243, + 0.3972, + 0.0568, + 0.1935, + 0.9489, + 0.4119, + 0.5499, + 0.0973, + 0.6565, + 0.2426, + 0.0407, + 0.0251, + 0.2729, + 0.5399, + 0.9748, 0.6626, - 0.4203, - 0.2155, - 0.8475, - 0.0908, - 0.8562, - 0.3156, - 0.2049, - 0.1823, - 0.9102, - 0.6838, - 0.7148, - 0.1793, - 0.3125, - 0.9586, - 0.7546, - 0.604, + 0.9406, + 0.2486, + 0.5528, + 0.1042, + 0.3232, + 0.4131, + 0.7139, + 0.3162, + 0.5134, + 0.34, + 0.8826, + 0.0273, + 0.4023, + 0.0111, + 0.9913, + 0.4317, + 0.1772, + 0.8323, + 0.3664, + 0.4732, + 0.3634, 0.3118, - 0.8101, - 0.4959, - 0.8185, - 0.4219, - 0.4432, - 0.6051, - 0.5419, - 0.0388, - 0.4955, - 0.7974, - 0.97, - 0.2376, - 0.4277, - 0.9422, - 0.7563, - 0.252, - 0.2684, - 0.5542, - 0.2017, - 0.7169, - 0.4098, - 0.5041, - 0.0845, - 0.6641, - 0.4068, - 0.113, - 0.8167, - 0.8183, - 0.593, - 0.6793, - 0.32, - 0.8479, - 0.1512, - 0.4447, - 0.8999, - 0.8037, - 0.4858, - 0.3577, - 0.0278, - 0.1077, - 0.4343, - 0.9247, - 0.987, - 0.579, - 0.0779, - 0.6556, - 0.4802, - 0.083, - 0.5124, - 0.7667, - 0.2325, - 0.611, - 0.2063, - 0.6464, - 0.3717, - 0.6612, - 0.5295, - 0.9825, - 0.8796, - 0.4059, - 0.2375, - 0.0903, - 0.4795, - 0.9723, - 0.0371, - 0.9511, - 0.714, - 0.7967, - 0.8334, - 0.9182, - 0.3979, - 0.206, - 0.3683, - 0.3438, - 0.2172, - 0.7885, - 0.9834, - 0.3146, - 0.9184, - 0.9474, - 0.7642, - 0.4046, - 0.8588, - 0.956, - 0.6571, - 0.2771, - 0.814, + 0.6642, + 0.3556, + 0.2266, + 0.5283, + 0.6704, + 0.7575, + 0.704, + 0.7089, + 0.0131, + 0.705, + 0.6806, + 0.3462, + 0.6039, 0.0632, - 0.4755, - 0.6966, - 0.1431, - 0.3144, - 0.6021, - 0.4048, - 0.024, - 0.1224, - 0.5746, - 0.6649, - 0.2496, - 0.6206, - 0.6664, - 0.0101, - 0.3653, - 0.7517, - 0.8584, - 0.6702, - 0.6109, - 0.4283, - 0.7605, - 0.8829, - 0.9883, - 0.3999, - 0.9363, - 0.9617, - 0.7453, - 0.4291, - 0.8446, - 0.5669, - 0.8532, - 0.6155, - 0.6025, - 0.2746, - 0.6999, - 0.5285, - 0.9631, - 0.7373, - 0.5249, - 0.4085, - 0.3752, - 0.0534, - 0.7114, - 0.8713, - 0.0728, - 0.3858, - 0.9817, - 0.1621, - 0.4523, - 0.8138, - 0.0877, - 0.2735, - 0.7524, - 0.0902, - 0.3776, - 0.6365, - 0.2797, - 0.3628, - 0.1792, - 0.379, - 0.8736, - 0.336, - 0.2032, - 0.6632, - 0.1291, - 0.2823, - 0.7545, - 0.1941, - 0.4119, - 0.3122, - 0.1089, - 0.2377, - 0.3024, - 0.8288, - 0.4062, - 0.4318, - 0.694, - 0.2778, - 0.223, - 0.5682, - 0.8424, - 0.0402, - 0.5202, - 0.5337, - 0.4645, - 0.5547, - 0.9131, - 0.9062, - 0.386, - 0.5647, - 0.0764, - 0.8595, - 0.0752, - 0.912, - 0.8298, - 0.3699, - 0.794, - 0.7812, - 0.271, - 0.0803, - 0.4168, - 0.6232, - 0.9876, - 0.6054, - 0.4276, - 0.0292, - 0.8144, - 0.1604, - 0.4432, - 0.0663, - 0.1989, - 0.1469, - 0.1448, - 0.1076, - 0.5647, - 0.354, - 0.0971, - 0.1444, - 0.4021, - 0.6687, - 0.2058, - 0.8737, - 0.3617, - 0.649, - 0.7371, - 0.1513, - 0.9816, - 0.2062, - 0.0595, - 0.9273, - 0.2011, - 0.3787, - 0.5451, - 0.6178, - 0.0712, - 0.1433, - 0.2319, - 0.083, - 0.5706, - 0.1668, - 0.1646, - 0.061, + 0.5882, + 0.7898, + 0.3947, + 0.1809, + 0.0091, + 0.0152, + 0.5317, + 0.1552, + 0.1947, + 0.8451, + 0.9544, + 0.2439, + 0.7906, + 0.6612, + 0.3789, + 0.3935, + 0.2283, + 0.9303, + 0.1028, + 0.96, + 0.0847, + 0.7052, + 0.4124, + 0.3304, + 0.8965, + 0.4038, + 0.4325, + 0.7952, + 0.6667, + 0.9669, + 0.0703, + 0.0829, + 0.9603, + 0.3159, + 0.5598, + 0.612, + 0.4658, + 0.2487, + 0.9853, + 0.6207, + 0.113, + 0.1991, + 0.5898, + 0.705, + 0.4504, + 0.5054, + 0.0826, + 0.3408, + 0.4636, + 0.0691, + 0.8132, + 0.1992, + 0.7658, + 0.8212, + 0.411, + 0.2451, + 0.4556, + 0.2889, + 0.9381, + 0.6556, + 0.4115, + 0.6634, + 0.0814, + 0.6504, + 0.862, + 0.4762, + 0.362, + 0.4636, + 0.911, + 0.8914, + 0.9415, + 0.1814, + 0.4996, + 0.3068, + 0.3173, + 0.92, + 0.6324, + 0.9694, + 0.8132, + 0.6577, + 0.8079, + 0.9998, 0.4315, - 0.3073, - 0.6593, - 0.7264, - 0.7362, - 0.5679, - 0.9722, - 0.5223, - 0.8286, - 0.2428, - 0.1234, - 0.5578, - 0.6579, - 0.481, - 0.7398, - 0.8448, - 0.0016, - 0.4372, - 0.6838, - 0.3963, - 0.284, - 0.5939, - 0.8099, - 0.6704, - 0.1535, - 0.9783, - 0.298, - 0.8373, - 0.2052, - 0.7041, - 0.3074, - 0.9849, - 0.0593, - 0.0858, - 0.4277, - 0.0225, - 0.9748, - 0.4447, - 0.0979, - 0.3829, - 0.1003, - 0.4912, - 0.6019, - 0.2933, - 0.8219, - 0.8563, - 0.8879, - 0.2247, - 0.4094, - 0.9219, - 0.5641, - 0.2546, - 0.5499, - 0.2037, - 0.0285, - 0.0203, - 0.5356, - 0.1531, - 0.0563, - 0.7304, - 0.2905, - 0.3897, - 0.7854, - 0.558, - 0.0705, - 0.1893, - 0.6598, - 0.4221, - 0.6992, - 0.241, - 0.8959, - 0.513, - 0.3169, - 0.889, - 0.8475, - 0.3863, - 0.3338, + 0.2652, + 0.8883, + 0.8479, + 0.0502, + 0.5801, + 0.047, + 0.8047, + 0.6013, + 0.4172, + 0.931, + 0.7448, + 0.5603, + 0.2222, + 0.3557, + 0.5816, + 0.3647, + 0.8354, + 0.4887, + 0.9364, + 0.7726, + 0.6788, + 0.4518, + 0.9828, + 0.2516, + 0.282, + 0.9806, + 0.4968, + 0.7199, + 0.3859, + 0.6026, + 0.8732, + 0.3446, + 0.0727, 0.6524, - 0.2164, - 0.7347, - 0.1589, - 0.2013, - 0.6968, - 0.7173, - 0.8655, + 0.7378, + 0.0536, + 0.3626, + 0.6637, + 0.6525, + 0.6385, + 0.7306, 0.8389, - 0.5136, - 0.5921, - 0.058, - 0.2835, - 0.9448, - 0.2244, - 0.922, - 0.9307, - 0.0391, - 0.9643, - 0.3019, - 0.2082, - 0.8918, - 0.3271, - 0.2002, - 0.1882, - 0.3476, - 0.5681, - 0.4301, - 0.6888, - 0.4374, - 0.416, - 0.5338, - 0.8314, - 0.6387, - 0.0302, - 0.098, - 0.7368, - 0.8088, - 0.6138, - 0.7458, - 0.9632, - 0.695, - 0.8248, - 0.7262, - 0.9279, - 0.9506, - 0.4113, - 0.228, - 0.9504, - 0.2932, + 0.4714, + 0.0673, + 0.2507, + 0.9027, + 0.2379, + 0.6059, + 0.8762, + 0.9747, + 0.2734, + 0.5028, + 0.103, + 0.0674, + 0.1949, + 0.6124, + 0.8783, + 0.3069, + 0.9245, + 0.0546, + 0.9863, + 0.965, + 0.101, + 0.8683, + 0.4836, + 0.1723, + 0.4292, 0.9657, - 0.5748, - 0.621, - 0.7896, - 0.0529, - 0.3351, - 0.465, - 0.1599, - 0.9407, - 0.4969, - 0.7772, - 0.8126, - 0.3693, - 0.1872, - 0.1587, - 0.6733, - 0.8071, - 0.1943, - 0.4568, - 0.9514, - 0.5337, - 0.4931, - 0.9645, - 0.7342, - 0.2265, - 0.2919, - 0.7896, - 0.2257, + 0.2621, + 0.9481, + 0.8597, + 0.6656, + 0.6661, + 0.4372, + 0.5928, + 0.5074, + 0.2805, + 0.2084, + 0.4857, + 0.7558, + 0.9188, + 0.402, + 0.5089, + 0.2114, + 0.4825, + 0.5495, + 0.603, + 0.9818, + 0.9204, + 0.2918, + 0.8144, + 0.669, + 0.0161, + 0.4342, + 0.607, + 0.0808, + 0.6294, + 0.8625, + 0.26, + 0.1483, + 0.1495, + 0.1618, 0.3923, - 0.7643, - 0.0849, - 0.975, - 0.588, - 0.492, - 0.5397, - 0.323, - 0.3825, - 0.4025, - 0.8538, - 0.1809, - 0.3684, - 0.6488, - 0.354, - 0.8219, - 0.3645, - 0.4343, - 0.5167, - 0.0396, - 0.4808, - 0.6218, - 0.7379, - 0.5551, - 0.4116, - 0.4042, - 0.2714, - 0.6678, - 0.9302, - 0.883, - 0.2209, - 0.9339, - 0.2221, - 0.4776, - 0.5027, - 0.075, - 0.5445, - 0.8684, - 0.238, - 0.3167, - 0.8905, - 0.0869, - 0.597, - 0.8688, - 0.5554, - 0.9291, - 0.543, - 0.6856, - 0.166, - 0.8255, - 0.9661, - 0.4488, - 0.4918, - 0.6504, - 0.4542, - 0.055, - 0.7815, - 0.5516, - 0.4834, - 0.697, - 0.2076, - 0.1694, - 0.2302, - 0.6739, - 0.6409, - 0.3738, - 0.1125, - 0.3736, - 0.7434, - 0.0616, - 0.251, - 0.969, - 0.2112, - 0.0746, - 0.6095, - 0.5741, - 0.7495, - 0.7715, - 0.9944, - 0.6321, - 0.0685, - 0.4876, - 0.3405, - 0.4779, - 0.8375, - 0.1125, - 0.216, - 0.8785, - 0.07, - 0.4039, - 0.6792, - 0.4178, - 0.7017, - 0.721, - 0.6717, - 0.2045, - 0.768, - 0.2899, - 0.6618, - 0.2811, - 0.9159, - 0.9694, - 0.6946, - 0.5372, - 0.1831, - 0.6683, - 0.9448, - 0.9427, - 0.7742, - 0.775, - 0.4106, - 0.0619, - 0.0533, - 0.5331, - 0.8032, - 0.7346, - 0.7756, - 0.6545, - 0.9252, - 0.4698, - 0.621, - 0.1384, - 0.5822, - 0.7068, - 0.599, - 0.2353, - 0.5215, - 0.9053, - 0.8046, - 0.5742, - 0.7834, - 0.3403, - 0.754, - 0.4332, - 0.1022, - 0.4115, - 0.4792, - 0.3414, - 0.4684, - 0.02, - 0.547, - 0.589, - 0.7521, - 0.672, - 0.548, - 0.4181, - 0.132, - 0.9656, - 0.0313, - 0.058, - 0.306, - 0.1588, - 0.7683, - 0.4866, - 0.1385, - 0.5427, - 0.1416, - 0.3402, - 0.2653, - 0.4149, - 0.8781, - 0.343, - 0.0109, - 0.5998, - 0.4885, - 0.5748, - 0.3145, - 0.7091, - 0.9867, - 0.8049, - 0.7137, - 0.1534, - 0.5255, - 0.1078, - 0.0382, - 0.1085, - 0.1346, - 0.5522, 0.7973, - 0.7191, - 0.4445, - 0.0292, - 0.2399, - 0.4791, - 0.8087, - 0.3502, - 0.0583, - 0.107, - 0.1766, - 0.6723, - 0.2802, - 0.8563, - 0.9579, - 0.5084, - 0.381, - 0.9673, - 0.9354, - 0.4879, - 0.7158, - 0.7027, - 0.7, - 0.811, 0.655, - 0.7606, - 0.2204, + 0.6939, + 0.5884, + 0.6882, + 0.0225, + 0.7884, + 0.1023, + 0.5144, + 0.7024, + 0.8475, + 0.548, + 0.7761, + 0.2942, + 0.0809, + 0.6562, + 0.3128, + 0.3544, + 0.0695, + 0.2463, + 0.2554, + 0.635, + 0.9899, + 0.1724, + 0.5174, + 0.564, + 0.3826, + 0.5958, + 0.4924, + 0.6915, + 0.8914, + 0.4358, + 0.2472, + 0.3738, + 0.8376, + 0.1335, + 0.0941, + 0.4266, + 0.0342, + 0.312, + 0.241, + 0.3492, 0.0241, - 0.3929, - 0.3473, - 0.1249, - 0.7141, - 0.4961, - 0.5582, - 0.1958, + 0.6514, + 0.1446, + 0.1917, + 0.9636, + 0.3401, + 0.3286, + 0.1442, + 0.1269, + 0.3499, + 0.5613, + 0.0472, + 0.5927, + 0.5547, + 0.7919, + 0.5039, + 0.3553, + 0.8329, + 0.7655, + 0.953, + 0.5576, + 0.7103, + 0.5003, + 0.3001, + 0.3896, + 0.813, + 0.8923, + 0.8212, + 0.1588, + 0.7551, + 0.297, + 0.0237, 0.3998, - 0.9339, - 0.4076, - 0.313, - 0.1306, - 0.8716, - 0.8297, - 0.0469, - 0.3606, - 0.3712, - 0.7332, - 0.0696, - 0.6985, - 0.1155, - 0.5558, - 0.6783, - 0.3715, - 0.2398, - 0.8778, - 0.8537, - 0.0766, - 0.4971, - 0.79, - 0.3972, - 0.1876, - 0.6288, - 0.1964, - 0.3567, - 0.8862, - 0.2805, - 0.8191, - 0.5229, - 0.625, - 0.8312, - 0.5143, - 0.9311, - 0.4808, - 0.0683, - 0.4783, - 0.1179, - 0.9968, - 0.6881, - 0.204, - 0.4013, - 0.6127, - 0.7104, - 0.9354, - 0.7123, - 0.3951, - 0.2239, - 0.0271, - 0.687, - 0.3252, - 0.771, - 0.4964, - 0.2223, - 0.2485, - 0.4725, - 0.9111, - 0.1174, - 0.1716, - 0.8918, - 0.5718, - 0.0068, - 0.5394, - 0.9797, - 0.4779, - 0.514, - 0.4916, - 0.5345, - 0.2325, - 0.3309, - 0.4797, - 0.5107, - 0.4921, - 0.5867, - 0.4976, - 0.4475, - 0.3161, - 0.7772, - 0.401, - 0.2485, - 0.2808, - 0.2303, - 0.8506, - 0.3592, - 0.2014, - 0.4606, - 0.7451, - 0.0373, - 0.9301, - 0.2536, - 0.7986, - 0.0472, - 0.0071, - 0.9108, - 0.0702, - 0.1407, - 0.6294, - 0.7534, - 0.3262, - 0.2045, - 0.1988, - 0.9308, - 0.9349, - 0.2639, - 0.6336, - 0.443, - 0.1736, - 0.446, - 0.1912, - 0.3853, - 0.0877, - 0.1606, - 0.3851, - 0.6591, - 0.3359, - 0.5272, - 0.7427, - 0.492, - 0.7931, - 0.9496, - 0.1393, - 0.9225, - 0.5196, - 0.4791, - 0.6696, - 0.4114, - 0.8784, - 0.2206, - 0.2708, - 0.4416, - 0.0514, - 0.1932, - 0.6101, - 0.4972, - 0.6818, - 0.9576, - 0.6725, - 0.9753, - 0.7942, - 0.7898, - 0.2842, - 0.0649, - 0.2944, - 0.4108, - 0.786, - 0.722, - 0.863, + 0.2573, + 0.4987, + 0.8978, + 0.6022, + 0.7648, + 0.4143, + 0.8029, + 0.4067, + 0.7404, + 0.9185, + 0.832, + 0.7242, + 0.794, + 0.2451, + 0.7789, + 0.2471, + 0.0387, + 0.8176, + 0.7626, + 0.4018, + 0.0869, + 0.9722, + 0.92, + 0.5962, + 0.1347, + 0.405, + 0.6527, + 0.2861, + 0.6416, + 0.9859, + 0.7941, + 0.0885, + 0.5784, + 0.4987, + 0.4884, + 0.5511, + 0.2481, + 0.7919, + 0.0164, + 0.4713, + 0.0508, + 0.1343, + 0.3486, + 0.704, 0.9098, - 0.1881, - 0.6185, - 0.1569, - 0.1061, - 0.9612, - 0.9836, - 0.2333, - 0.4037, - 0.4537, - 0.2475, - 0.6434, - 0.6904, - 0.2786, - 0.1954, - 0.312, - 0.0042, - 0.9574, - 0.2661, - 0.9949, - 0.2373, - 0.2121, - 0.097, - 0.8203, - 0.0929, - 0.2831, - 0.476, - 0.0277, - 0.5172, - 0.7322, - 0.0852, - 0.2228, - 0.1125, - 0.436, - 0.0648, - 0.1068, - 0.0015, - 0.6038, - 0.2273, - 0.5924, - 0.2539, - 0.1778, - 0.5185, - 0.3882, - 0.8291, - 0.443, - 0.1386, + 0.5203, + 0.2331, + 0.7448, + 0.5626, + 0.4174, + 0.0605, + 0.4831, + 0.9145, + 0.2879, + 0.1622, + 0.9788, + 0.7967, + 0.6406, + 0.6501, + 0.3605, + 0.2132, + 0.7979, + 0.8802, 0.8201, - 0.6008, - 0.0412, - 0.5326, - 0.2845, - 0.6669, - 0.6165, - 0.4212, - 0.6913, - 0.649, - 0.716, - 0.304, - 0.4223, - 0.4982, - 0.7546, - 0.3959, - 0.3708, - 0.1211, - 0.0543, - 0.176, - 0.538, - 0.0866, - 0.7852, - 0.1988, - 0.7574, - 0.6033, - 0.6874, - 0.9273, - 0.2402, - 0.1132, - 0.4467, - 0.0775, - 0.8562, - 0.5513, - 0.5093, - 0.9675, - 0.6815, - 0.5397, - 0.1518, - 0.2753, - 0.8389, - 0.7674, - 0.564, - 0.7541, - 0.0748, - 0.5959, - 0.535, - 0.6996, - 0.9985, - 0.1588, - 0.0441, - 0.5291, - 0.1137, - 0.4495, - 0.9242, - 0.1433, - 0.3084, - 0.8096, - 0.2763, - 0.2628, - 0.5722, - 0.6914, - 0.6869, - 0.1162, - 0.2421, - 0.5291, - 0.7827, - 0.0235, - 0.9711, - 0.1678, - 0.2558, - 0.7633, - 0.8953, - 0.558, - 0.2872, - 0.6831, - 0.9135, - 0.1623, - 0.2697, + 0.8928, + 0.352, + 0.1437, + 0.3573, + 0.5424, + 0.2935, 0.9916, - 0.3757, - 0.9326, - 0.7274, - 0.9267, - 0.8341, - 0.3677, - 0.8435, - 0.4122, - 0.7568, - 0.7958, - 0.7672, - 0.6316, - 0.9218, - 0.5789, + 0.8104, + 0.4411, + 0.3244, + 0.7675, + 0.9114, + 0.645, + 0.4639, + 0.2315, + 0.2226, + 0.8006, + 0.0573, + 0.8856, + 0.0194, + 0.4357, + 0.7001, + 0.3225, + 0.6129, + 0.0099, + 0.0924, + 0.0672, + 0.8151, + 0.8149, + 0.4908, + 0.3179, + 0.5889, + 0.4405, + 0.1521, + 0.8969, + 0.9212, + 0.7634, + 0.9858, + 0.7386, + 0.7272, + 0.9762, + 0.5713, + 0.819, + 0.253, + 0.6982, + 0.6575, + 0.8194, + 0.6378, + 0.8738, + 0.9734, + 0.3544, + 0.9805, + 0.3195, + 0.1923, + 0.279, + 0.7766, + 0.5032, + 0.2087, + 0.5749, + 0.603, + 0.1733, + 0.4578, + 0.9623, + 0.3985, + 0.7204, + 0.5059, + 0.8535, + 0.6706, + 0.0232, + 0.0075, + 0.6719, + 0.9357, + 0.7762, + 0.2003, + 0.822, + 0.6699, + 0.77, + 0.7607, + 0.4293, + 0.8444, + 0.1193, + 0.2123, + 0.487, + 0.3054, + 0.0954, + 0.3579, + 0.2994, + 0.8186, + 0.8742, + 0.3921, + 0.7393, + 0.5795, + 0.7651, + 0.8212, + 0.5449, + 0.9653, + 0.0613, + 0.3758, + 0.784, + 0.5661, + 0.5739, + 0.886, + 0.1311, + 0.7265, + 0.9823, + 0.7509, + 0.5808, + 0.3069, + 0.5796, + 0.7774, + 0.8864, + 0.6215, + 0.092, + 0.1852, + 0.4757, + 0.0389, + 0.9627, + 0.64, + 0.4753, + 0.1879, + 0.4222, + 0.7758, + 0.0351, + 0.0442, + 0.2973, + 0.7028, + 0.1346, + 0.0079, + 0.0469, + 0.2961, + 0.2465, + 0.679, + 0.9958, + 0.2708, + 0.5494, + 0.758, + 0.3864, + 0.697, + 0.9363, + 0.0271, + 0.0305, + 0.0459, + 0.0829, + 0.6836, + 0.8804, + 0.5916, + 0.6728, + 0.7289, + 0.7251, + 0.5598, + 0.9786, + 0.3367, + 0.8549, + 0.8574, + 0.9005, + 0.6251, + 0.0017, + 0.6582, 0.2437, - 0.0475, - 0.2775, - 0.8258, - 0.6748, - 0.0114, - 0.9327, - 0.7137, - 0.1149, - 0.5567, - 0.7287, - 0.3867, - 0.7384, + 0.195, + 0.0668, + 0.1334, + 0.8014, + 0.7104, + 0.3063, + 0.1813, + 0.4082, + 0.6754, + 0.0566, + 0.7658, + 0.2056, + 0.7691, + 0.407, + 0.8272, + 0.818, + 0.3527, + 0.2637, + 0.0468, + 0.9395, + 0.468, + 0.9806, + 0.7098, + 0.2162, + 0.5476, + 0.4756, + 0.7229, + 0.4121, + 0.9085, + 0.1227, + 0.9138, + 0.5117, + 0.8348, + 0.8204, + 0.4898, + 0.6618, + 0.8508, + 0.3609, + 0.4607, + 0.4899, + 0.0931, + 0.6748, + 0.7268, + 0.3837, + 0.2425, + 0.5408, + 0.3829, + 0.6413, + 0.2186, + 0.9675, + 0.8976, + 0.7634, + 0.1046, + 0.9812, + 0.1863, + 0.0928, + 0.2308, + 0.0049, + 0.0184, + 0.2302, + 0.4756, + 0.027, + 0.7802, + 0.4615, + 0.8758, + 0.7852, + 0.5514, + 0.3671, + 0.973, + 0.7542, + 0.4407, + 0.8346, + 0.2852, + 0.506, + 0.4433, + 0.1759, + 0.8019, + 0.9443, + 0.8957, + 0.7888, + 0.8832, + 0.8279, + 0.279, + 0.5024, + 0.7276, + 0.4246, + 0.925, + 0.7229, + 0.415, + 0.4724, + 0.0266, + 0.063, + 0.5954, + 0.0803, + 0.2437, + 0.4763, + 0.7241, + 0.1623, + 0.4257, + 0.3554, 0.9164, - 0.518, - 0.8311, - 0.9172, - 0.5512, - 0.8622, - 0.6397, - 0.2726, - 0.6847, - 0.1943, - 0.3202, - 0.0272, - 0.4311, - 0.3651, - 0.2269, - 0.1851, - 0.1301, - 0.1666, - 0.5899, - 0.0002, - 0.9834, - 0.1253, - 0.1026, - 0.4386, - 0.9262, - 0.7008, - 0.6949, - 0.3376, - 0.567, - 0.4022, - 0.344, - 0.8319, - 0.7705, - 0.4279, - 0.9969, - 0.2213, - 0.8323, - 0.1943, - 0.5537, - 0.2687, - 0.3068, - 0.4337, - 0.9857, - 0.235, - 0.4353, - 0.1471, - 0.1216, - 0.944, - 0.5182, - 0.0305, - 0.1882, - 0.0027, - 0.5151, - 0.4967, - 0.3713, - 0.1896, - 0.5846, - 0.256, - 0.3136, - 0.13, - 0.6627, - 0.9478, - 0.5113, - 0.4559, - 0.4066, - 0.2625, - 0.2159, - 0.7449, - 0.6642, - 0.3277, - 0.1183, - 0.3855, - 0.7746, - 0.7653, - 0.3437, - 0.6903, - 0.0915, - 0.2372, - 0.2049, - 0.1575, - 0.184, - 0.6919, - 0.8823, - 0.3428, - 0.8846, - 0.9393, - 0.6824, - 0.204, - 0.5146, - 0.705, - 0.9244, - 0.514, - 0.9807, - 0.6186, - 0.0431, - 0.1456, - 0.245, - 0.67, - 0.9062, - 0.6334, - 0.3713, + 0.7385, + 0.313, + 0.1381, + 0.1084, + 0.9734, + 0.465, + 0.2822, + 0.1619, + 0.7584, + 0.9892, + 0.8834, + 0.6498, + 0.9614, + 0.6388, + 0.4265, + 0.4841, + 0.1229, + 0.6637, + 0.8844, + 0.5083, + 0.2438, + 0.1061, + 0.6487, + 0.8937, + 0.5348, + 0.9035, 0.6085, - 0.8459, - 0.5263, - 0.3551, - 0.1246, - 0.7079, - 0.8559, - 0.3786, - 0.6738, - 0.5234, - 0.5969, - 0.4451, - 0.869, - 0.0301, - 0.8894, - 0.3673, - 0.7502, - 0.0858, - 0.8663, - 0.725, - 0.5986, - 0.9899, - 0.5094, - 0.9384, - 0.1732, - 0.8839, - 0.5287, - 0.4995, - 0.1842, - 0.6093, - 0.2689, - 0.7738, - 0.8978, - 0.7883, - 0.5613, - 0.9223, - 0.4561, - 0.2421, - 0.3739, - 0.8802, - 0.5269, - 0.7651, - 0.844, - 0.3346, - 0.6061, - 0.9707, - 0.6634, - 0.8578, - 0.7949, - 0.9909, - 0.8629, - 0.2772, - 0.9631, - 0.9657, - 0.7016, - 0.9926, - 0.2101, - 0.0913, - 0.7018, - 0.1927, - 0.3816, - 0.2858, - 0.6244, - 0.5114, - 0.3282, - 0.1159, - 0.2986, - 0.9515, - 0.9359, - 0.0502, - 0.3036, - 0.3637, - 0.9815, - 0.7511, - 0.3397, - 0.9058, - 0.6337, - 0.7876, - 0.1991, - 0.4132, - 0.8684, - 0.0995, - 0.8955, - 0.3489, - 0.6359, - 0.5659, - 0.207, - 0.8644, - 0.4105, - 0.2348, - 0.9984, - 0.8556, - 0.0071, - 0.8767, - 0.2028, - 0.5688, - 0.7963, - 0.4849, - 0.9904, - 0.5943, - 0.503, - 0.1648, - 0.6805, - 0.3479, - 0.7776, - 0.2199, - 0.5989, - 0.2702, - 0.2611, - 0.9716, - 0.9517, - 0.9289, - 0.0032, - 0.4015, - 0.2607, - 0.2904, - 0.3905, - 0.6461, - 0.338, - 0.1632, - 0.0267, - 0.3049, - 0.8773, - 0.3621, - 0.0676, - 0.2368, - 0.3932, - 0.661, - 0.7681, - 0.5453, - 0.1141, - 0.2778, - 0.823, - 0.0146, + 0.8484, 0.9573, - 0.4787, - 0.573, - 0.8043, - 0.0424, - 0.2568, - 0.9714, - 0.4293, - 0.358, - 0.1327, - 0.1729, - 0.4507, - 0.5619, - 0.95, - 0.7089, - 0.647, - 0.6211, - 0.2792, - 0.7089, - 0.239, - 0.5222, - 0.5896, - 0.258, - 0.6214, - 0.6275, - 0.7377, - 0.9422, - 0.3591, - 0.621, - 0.9314, - 0.1631, - 0.7843, - 0.8326, - 0.4687, - 0.6595, - 0.2185, - 0.2639, - 0.0605, - 0.0928, - 0.2098, - 0.3138, - 0.8296, - 0.4067, - 0.3226, - 0.735, - 0.0195, - 0.6809, - 0.5754, - 0.8358, - 0.6225, - 0.509, - 0.4501, - 0.9522, - 0.7982, - 0.2409, - 0.7373, - 0.5138, - 0.4932, - 0.7294, - 0.4394, - 0.3429, - 0.0932, - 0.3787, - 0.5198, - 0.5475, - 0.3987, - 0.6501, - 0.0738, - 0.3589, - 0.7026, - 0.2932, - 0.2006, - 0.4666, - 0.8182, - 0.9302, - 0.1175, + 0.7326, + 0.2724, + 0.6142, + 0.4956, + 0.7289, + 0.0482, + 0.1857, + 0.1881, + 0.3711, + 0.1902, + 0.5592, + 0.3284, + 0.8168, + 0.6255, + 0.7047, + 0.7901, + 0.6693, + 0.853, + 0.7509, 0.5704, - 0.8403, - 0.1622, - 0.0214, - 0.6963, - 0.381, - 0.3293, - 0.0804, - 0.8772, - 0.728, - 0.3574, - 0.6589, - 0.8962, - 0.379, - 0.4894, - 0.3956, - 0.7827, - 0.3566, - 0.2306, - 0.964, - 0.2994, - 0.4532, - 0.4743, - 0.5624, - 0.6099, - 0.9373, - 0.7682, - 0.4465, - 0.5688, - 0.8946, - 0.2279, - 0.0196, - 0.1338, - 0.7276, - 0.6472, - 0.3179, - 0.0098, - 0.4298, - 0.0926, - 0.0626, - 0.6848, - 0.1386, - 0.4563, - 0.3023, - 0.1348, - 0.1796, - 0.9444, - 0.3279, - 0.1184, - 0.7544, - 0.5676, - 0.9719, - 0.8778, - 0.1669, - 0.0445, - 0.1231, - 0.8326, - 0.701, - 0.2662, - 0.0816, - 0.0014, - 0.4932, - 0.94, - 0.8338, - 0.4905, - 0.6139, - 0.3098, - 0.0886, - 0.8875, - 0.4225, - 0.0696, - 0.1189, - 0.2111, - 0.2603, - 0.4413, - 0.9608, - 0.0391, - 0.7123, - 0.4643, - 0.3911, - 0.4563, - 0.2597, - 0.1573, - 0.3692, - 0.737, - 0.6883, - 0.0717, - 0.7027, - 0.1025, - 0.2599, - 0.7233, - 0.2881, - 0.4361, - 0.8984, - 0.5031, - 0.8316, - 0.8729, - 0.1966, - 0.0744, - 0.5258, - 0.8843, - 0.9656, - 0.1125, - 0.3414, - 0.9439, - 0.5779, - 0.5249, - 0.6429, - 0.9224, - 0.4676, - 0.1706, + 0.4358, + 0.7107, + 0.0661, + 0.5845, + 0.6431, + 0.027, + 0.2634, + 0.7359, + 0.1968, + 0.799, + 0.1401, + 0.9999, + 0.463, + 0.8936, + 0.4485, + 0.3694, + 0.3199, + 0.5732, + 0.2097, 0.156, - 0.8194, - 0.5498, - 0.5755, - 0.3738, - 0.7498, - 0.1011, - 0.0946, - 0.7198, - 0.3861, - 0.4084, - 0.869, - 0.4934, - 0.2466, - 0.0058, - 0.2545, - 0.2103, - 0.1901, - 0.396, - 0.4855, - 0.2923, - 0.5978, - 0.8225, - 0.5122, - 0.8797, - 0.2445, - 0.2017, - 0.4151, - 0.4299, - 0.2021, - 0.4897, - 0.7513, - 0.7849, - 0.9371, - 0.2457, - 0.4913, - 0.0931, - 0.7498, - 0.2595, - 0.5578, - 0.6603, - 0.2782, - 0.3338, - 0.3966, - 0.3897, - 0.5851, - 0.7923, - 0.9955, - 0.1043, - 0.1513, - 0.5468, - 0.753, - 0.3928, - 0.447, - 0.1712, - 0.7585, - 0.542, - 0.0754, - 0.535, - 0.7411, - 0.5381, - 0.2881, - 0.5547, - 0.1195, - 0.9797, - 0.1161, - 0.164, - 0.3976, - 0.8101, - 0.2401, - 0.5135, - 0.858, - 0.9887, - 0.6703, - 0.1655, - 0.8929, - 0.3481, - 0.8017, - 0.0902, - 0.7877, - 0.0356, - 0.2165, - 0.4245, - 0.9752, - 0.7137, - 0.2499, - 0.6856, - 0.3136, - 0.4832, - 0.7657, - 0.7616, - 0.4447, - 0.9181, - 0.2581, - 0.5731, - 0.259, - 0.6428, - 0.4418, - 0.9474, - 0.4509, - 0.2821, - 0.6693, - 0.1294, - 0.5938, - 0.6791, - 0.2721, - 0.2527, - 0.0647, - 0.2477, - 0.5182, - 0.9193, - 0.2627, - 0.5982, - 0.2831, - 0.0111, - 0.6738, - 0.4537, - 0.5906, - 0.6221, - 0.604, - 0.0147, - 0.2167, - 0.2989, - 0.4427, - 0.7063, - 0.3098, - 0.5182, - 0.5859, - 0.0172, - 0.0445, - 0.288, - 0.2328, - 0.4962, - 0.2669, - 0.4821, - 0.1665, - 0.5931, - 0.3598, - 0.0987, - 0.9257, - 0.4923, - 0.71, - 0.1838, - 0.3663, - 0.6932, - 0.9876, - 0.135, - 0.3344, - 0.9495, - 0.8233, - 0.8611, - 0.5308, - 0.6855, - 0.1163, - 0.4738, - 0.1173, - 0.8543, - 0.4003, - 0.7261, - 0.0272, - 0.8957, - 0.5861, - 0.8245, - 0.5571, - 0.2292, - 0.8084, - 0.2817, - 0.2558, - 0.3866, - 0.7306, - 0.6799, - 0.2517, - 0.7179, - 0.474, - 0.7079, - 0.1479, - 0.0831, - 0.1359, + 0.6875, + 0.1953, + 0.209, + 0.4092, + 0.3748, + 0.0208, + 0.1982, + 0.8377, + 0.6815, + 0.096, + 0.8667, + 0.0292, + 0.091, + 0.4199, + 0.3251, + 0.4018, + 0.9052, + 0.5471, + 0.9607, + 0.9574, + 0.7472, 0.6975, - 0.4603, - 0.0742, - 0.743, - 0.9705, - 0.5559, - 0.8949, - 0.7914, - 0.3615, - 0.0654, - 0.0607, - 0.4035, - 0.2955, - 0.6508, + 0.7459, + 0.7699, + 0.7539, + 0.1346, + 0.9434, + 0.9125, + 0.7768, + 0.9771, + 0.7392, + 0.2937, + 0.0527, + 0.436, + 0.1957, + 0.0871, + 0.5209, + 0.0556, + 0.1318, + 0.8329, + 0.5104, + 0.676, + 0.3205, + 0.9826, + 0.6546, + 0.358, + 0.4731, + 0.2689, + 0.6869, + 0.73, + 0.6729, + 0.3515, + 0.3252, + 0.6701, + 0.3203, + 0.3333, + 0.2045, + 0.2919, + 0.669, 0.2391, - 0.3182, - 0.6924, - 0.7417, - 0.8223, - 0.2128, - 0.15, - 0.7299, - 0.2042, - 0.6994, - 0.6641, - 0.5618, - 0.9661, - 0.6702, - 0.3242, - 0.9253, - 0.1293, - 0.7536, - 0.3557, - 0.8027, - 0.027, - 0.7798, - 0.3331, - 0.695, - 0.0067, - 0.1996, - 0.3752, - 0.7707, - 0.8564, - 0.8054, - 0.5769, - 0.396, - 0.6668, - 0.6762, - 0.5565, - 0.1251, - 0.6372, - 0.1927, - 0.461, - 0.3675, - 0.4401, - 0.8667, - 0.2912, - 0.4945, - 0.2178, - 0.2922, - 0.2104, - 0.5667, - 0.5868, - 0.6483, - 0.5943, - 0.9489, - 0.7863, - 0.1754, - 0.3376, - 0.5952, - 0.8992, - 0.0548, - 0.0799, - 0.865, - 0.619, - 0.1475, - 0.6777, - 0.4497, - 0.2875, - 0.0026, - 0.4952, - 0.6462, - 0.9736, - 0.242, - 0.554, - 0.0062, - 0.7127, - 0.9215, - 0.6473, - 0.772, - 0.5374, - 0.5458, - 0.2274, - 0.3626, - 0.1041, - 0.4296, - 0.1515, - 0.9759, - 0.843, - 0.682, - 0.3039, - 0.9306, - 0.0223, - 0.6424, - 0.1622, - 0.8506, - 0.7075, - 0.2258, - 0.3363, - 0.0553, - 0.5613, - 0.1206, - 0.3789, - 0.9534, - 0.5178, - 0.3387, - 0.2072, - 0.9521, - 0.3058, - 0.1944, - 0.566, - 0.3745, - 0.3393, - 0.4665, - 0.8518, - 0.9272, - 0.6343, - 0.5789, - 0.9452, - 0.1633, - 0.5415, - 0.6825, - 0.7314, - 0.3978, - 0.9031, - 0.6873, - 0.3882, - 0.699, - 0.8812, - 0.2704, - 0.5296, - 0.3561, - 0.8774, - 0.1935, - 0.8985, - 0.7538, - 0.6977, - 0.5509, - 0.1094, - 0.8929, - 0.9, - 0.0658, - 0.9475, - 0.4214, - 0.818, - 0.4536, - 0.723, - 0.2001, - 0.2804, - 0.5062, - 0.6126, - 0.9311, - 0.7982, - 0.4956, - 0.7469, - 0.3336, - 0.5832, - 0.5421, - 0.6264, - 0.3388, - 0.2957, - 0.1731, - 0.6651, - 0.3578, - 0.1222, - 0.8933, - 0.4581, - 0.4068, - 0.4512, - 0.0349, - 0.6538, - 0.9544, - 0.7831, - 0.9048, - 0.8716, - 0.2131, - 0.8528, - 0.0306, - 0.3496, - 0.0318, - 0.892, - 0.2111, - 0.7609, - 0.7354, - 0.7202, - 0.1266, - 0.2978, - 0.3393, - 0.7652, - 0.111, - 0.5363, - 0.034, - 0.837, - 0.6683, - 0.0327, - 0.7431, - 0.1229, - 0.5593, - 0.6162, - 0.787, - 0.1893, - 0.9438, - 0.5152, - 0.3631, - 0.6858, - 0.7286, - 0.2253, - 0.9325, - 0.6446, - 0.3902, - 0.7511, - 0.3935, - 0.543, - 0.3521, - 0.2238, - 0.0984, - 0.3532, - 0.3583, - 0.1971, - 0.5236, - 0.5623, - 0.3243, - 0.5851, - 0.1566, - 0.363, - 0.0385, - 0.8585, - 0.9916, - 0.719, - 0.4353, - 0.7441, - 0.3541, - 0.1366, - 0.8914, - 0.9488, - 0.7333, - 0.0515, - 0.7696, - 0.123, - 0.4546, - 0.3783, - 0.7988, - 0.1403, - 0.4268, - 0.844, - 0.0509, - 0.0088, - 0.4978, - 0.2321, - 0.3509, - 0.0525, - 0.2279, - 0.6092, - 0.9158, - 0.7481, - 0.936, - 0.0213, - 0.0125, - 0.7452, - 0.3933, - 0.298, - 0.8039, - 0.2809, - 0.5591, - 0.2957, - 0.1663, - 0.9903, - 0.4092, - 0.4619, - 0.747, - 0.9553, - 0.6679, - 0.8735, - 0.497, - 0.4687, - 0.2879, - 0.3377, - 0.4965, - 0.2139, - 0.0653, - 0.9578, - 0.2224, - 0.9337, - 0.5227, - 0.7118, - 0.9231, - 0.1634, - 0.0164, - 0.7922, - 0.1057, - 0.4229, - 0.5871, - 0.7305, - 0.0656, - 0.1215, - 0.9586, - 0.0995, - 0.9507, - 0.7158, - 0.8423, - 0.9426, - 0.4158, - 0.2702, - 0.9212, - 0.5838, - 0.8771, - 0.1937, - 0.8393, - 0.1673, - 0.4005, - 0.2268, - 0.1637, - 0.0275, - 0.0554, - 0.4289, - 0.646, - 0.3606, - 0.5674, - 0.0064, - 0.9405, - 0.6511, - 0.1445, - 0.5474, - 0.3657, - 0.1638, - 0.2398, - 0.3012, - 0.951, - 0.794, - 0.9504, - 0.4512, - 0.5232, - 0.2623, - 0.6523, - 0.1532, - 0.4144, - 0.9752, - 0.4273, - 0.0074, - 0.0575, - 0.1087, - 0.9995, - 0.7366, - 0.3532, - 0.2532, - 0.7825, - 0.2052, - 0.1658, + 0.9863, + 0.696, 0.1137, - 0.3716, - 0.02, - 0.314, - 0.3267, - 0.4051, - 0.8753, - 0.9367, - 0.2793, - 0.0719, - 0.0909, - 0.3142, - 0.2726, - 0.8167, - 0.2442, - 0.5474, + 0.5711, + 0.9559, + 0.0662, + 0.9685, + 0.8805, 0.4054, - 0.9434, - 0.5259, - 0.6924, - 0.29, - 0.2733, - 0.0023, - 0.2456, - 0.3562, - 0.847, - 0.0621, - 0.8754, - 0.775, - 0.9284, - 0.3607, - 0.1539, - 0.0542, - 0.1061, - 0.1286, - 0.7191, - 0.2453, - 0.0448, - 0.089, - 0.5665, - 0.7402, - 0.3914, - 0.0418, - 0.0391, - 0.6745, - 0.6556, - 0.2576, - 0.5822, - 0.4134, - 0.5908, - 0.9485, - 0.0693, - 0.474, - 0.0783, - 0.8618, - 0.6396, - 0.1266, - 0.2624, - 0.6694, - 0.5606, - 0.6145, - 0.7503, - 0.7581, - 0.3847, - 0.7721, - 0.308, - 0.4101, - 0.9178, - 0.8761, - 0.4217, - 0.5609, - 0.6766, - 0.3766, - 0.4901, - 0.4531, - 0.7731, - 0.9169, - 0.5538, - 0.4189, - 0.5323, - 0.5303, - 0.1262, - 0.8869, - 0.0608, - 0.009, - 0.5124, - 0.0042, - 0.9087, - 0.4763, - 0.6595, - 0.4371, - 0.7257, - 0.9799, - 0.3266, - 0.7749, - 0.1799, - 0.7903, - 0.3715, - 0.6062, - 0.233, - 0.949, - 0.2362, - 0.5281, - 0.7259, - 0.1608, - 0.9277, - 0.3121, - 0.7701, - 0.9288, - 0.3913, - 0.7926, - 0.5054, + 0.7709, + 0.9769, + 0.3341, + 0.0127, + 0.4391, + 0.0926, + 0.4596, + 0.5996, + 0.8993, + 0.8264, + 0.754, + 0.8419, 0.6161, - 0.6803, - 0.5343, - 0.9839, - 0.8992, - 0.0252, - 0.5672, - 0.7208, - 0.2669, - 0.3914, - 0.7569, - 0.0636, - 0.5012, - 0.8357, - 0.8726, - 0.0947, - 0.2274, - 0.7317, - 0.4047, - 0.0592, - 0.7805, - 0.3101, - 0.7965, - 0.6774, - 0.494, - 0.2807, - 0.7427, - 0.4252, - 0.2191, - 0.1885, - 0.5543, - 0.4426, - 0.9243, - 0.55, - 0.774, - 0.9064, - 0.2642, - 0.5705, - 0.68, - 0.7419, - 0.6874, - 0.7206, - 0.0195, - 0.7742, - 0.2917, - 0.6727, - 0.9102, - 0.5281, - 0.7239, - 0.4819, - 0.3664, - 0.9657, - 0.004, - 0.8667, - 0.3594, - 0.731, + 0.3059, + 0.0512, + 0.632, + 0.2814, + 0.0473, + 0.6458, + 0.0896, + 0.2653, + 0.9946, + 0.037, + 0.5749, + 0.3044, + 0.8342, + 0.2223, + 0.9367, + 0.681, + 0.0711, + 0.2667, + 0.9464, + 0.6677, + 0.5686, + 0.0227, + 0.0429, + 0.6593, + 0.2277, + 0.7485, + 0.145, + 0.0485, + 0.5636, + 0.7881, + 0.4747, + 0.8684, + 0.7122, + 0.0367, + 0.4706, + 0.2014, + 0.9729, + 0.5226, + 0.271, + 0.7332, + 0.8497, 0.7333, - 0.3666, - 0.6357, - 0.6973, - 0.1709, - 0.0126, - 0.977, - 0.0234, - 0.2472, - 0.4376, - 0.2484, - 0.4478, - 0.03, - 0.5522, - 0.5608, - 0.1529, - 0.8411, - 0.6059, - 0.152, - 0.9862, - 0.795, - 0.244, - 0.0205, - 0.2636, - 0.2127, - 0.3255, - 0.1438, - 0.6551, - 0.4095, - 0.455, - 0.5473, - 0.5778, - 0.1661, - 0.9914, - 0.4787, - 0.8249, - 0.5353, - 0.1621, - 0.7582, - 0.5405, - 0.8896, - 0.2134, - 0.9981, - 0.4758, - 0.4278, - 0.9885, - 0.7476, - 0.6763, - 0.8053, - 0.8484, - 0.9092, - 0.0223, - 0.3437, - 0.4774, - 0.5642, - 0.6169, - 0.9892, - 0.1399, - 0.2473, - 0.2612, - 0.3809, - 0.3056, - 0.9437, - 0.5378, - 0.3399, - 0.8583, - 0.9472, + 0.1188, + 0.4851, + 0.3722, + 0.7709, + 0.0962, + 0.494, + 0.1406, + 0.6106, + 0.4305, + 0.4517, + 0.9313, + 0.831, + 0.1655, + 0.8299, + 0.1746, + 0.2936, + 0.0442, + 0.0056, + 0.9479, + 0.7053, + 0.5082, + 0.8798, + 0.5122, + 0.6212, + 0.854, + 0.0238, + 0.3374, + 0.4858, + 0.9814, + 0.516, + 0.7549, + 0.8456, + 0.8731, + 0.355, + 0.0027, + 0.8511, + 0.4953, + 0.223, + 0.2255, + 0.9721, + 0.4514, + 0.7535, + 0.4085, + 0.5546, 0.9368, - 0.4843, - 0.2251, - 0.1808, + 0.6741, + 0.0173, + 0.0779, + 0.6263, + 0.3633, + 0.5398, + 0.079, + 0.5824, + 0.2443, + 0.2673, + 0.5373, + 0.9797, + 0.4629, + 0.297, + 0.6518, + 0.6959, + 0.6061, + 0.9632, + 0.3745, + 0.7654, + 0.8611, + 0.6006, + 0.7465, + 0.6542, + 0.078, + 0.064, + 0.2696, + 0.0131, + 0.6391, + 0.4136, + 0.7707, + 0.4495, + 0.4663, + 0.3992, + 0.0177, + 0.1636, + 0.3549, + 0.7459, + 0.0831, + 0.8805, + 0.5742, + 0.5834, + 0.6768, + 0.9968, + 0.5285, + 0.4438, + 0.9778, + 0.942, + 0.1373, + 0.6865, + 0.8751, + 0.9095, + 0.312, + 0.3918, + 0.6981, + 0.4372, + 0.5249, + 0.2598, + 0.0581, + 0.2965, + 0.3694, + 0.1862, + 0.4603, + 0.3858, + 0.479, + 0.5475, + 0.2335, + 0.7075, + 0.7067, + 0.9886, + 0.6782, + 0.3654, + 0.0985, + 0.5469, + 0.1147, + 0.2131, + 0.9515, + 0.4604, + 0.6788, + 0.154, + 0.8212, + 0.5617, + 0.5529, + 0.5733, + 0.3613, + 0.8687, + 0.0261, + 0.7794, + 0.8195, + 0.3835, + 0.9805, + 0.0896, + 0.6178, + 0.0462, + 0.5275, + 0.6484, + 0.6218, + 0.5796, + 0.0555, + 0.2534, + 0.0598, + 0.0466, + 0.3151, + 0.4186, + 0.95, + 0.69, + 0.5442, + 0.9145, + 0.6345, + 0.9145, + 0.1095, + 0.4249, + 0.8172, + 0.2018, + 0.5708, + 0.7723, + 0.7254, + 0.51, + 0.3097, + 0.4357, + 0.022, + 0.4606, + 0.0488, + 0.3869, + 0.2633, + 0.4603, + 0.6722, + 0.348, + 0.2426, + 0.5585, + 0.202, + 0.0696, + 0.0972, + 0.4534, + 0.946, + 0.8333, + 0.4136, + 0.1822, + 0.0761, + 0.9545, + 0.4158, + 0.4335, + 0.753, + 0.9735, + 0.0083, + 0.6989, + 0.8157, + 0.7957, + 0.5027, + 0.6151, + 0.571, + 0.5804, + 0.991, + 0.6051, + 0.7745, + 0.1358, + 0.3024, + 0.1858, + 0.6007, + 0.2057, + 0.9215, + 0.2274, + 0.7171, + 0.4309, + 0.1644, + 0.637, + 0.2322, + 0.5663, + 0.7004, + 0.2342, + 0.1998, + 0.3354, + 0.9959, + 0.7538, + 0.5848, + 0.1388, + 0.6951, + 0.5627, + 0.9003, + 0.6334, + 0.1739, + 0.241, + 0.8622, + 0.1513, + 0.4061, + 0.1275, + 0.0731, + 0.6637, + 0.0594, + 0.0496, + 0.8613, + 0.0197, + 0.6403, + 0.0484, + 0.2315, + 0.1554, + 0.9445, + 0.3797, + 0.8674, + 0.8097, + 0.5791, + 0.4891, + 0.969, + 0.7483, + 0.6026, + 0.9623, + 0.4266, + 0.8021, + 0.9936, + 0.3709, + 0.4168, + 0.1951, + 0.5147, + 0.3075, + 0.1625, + 0.2788, + 0.7798, + 0.7528, + 0.9313, + 0.4286, + 0.5358, + 0.0551, 0.824, - 0.0012, - 0.5404, - 0.6852, - 0.7324, - 0.9422, - 0.7133, - 0.585, - 0.0519, + 0.7053, + 0.5991, + 0.7004, + 0.2462, + 0.5817, + 0.1202, + 0.5649, + 0.0673, + 0.9446, + 0.4064, + 0.9811, 0.048, - 0.668, - 0.2206, - 0.3253, - 0.6398, - 0.3958, - 0.9294, - 0.6547, - 0.0088, - 0.5944, - 0.6844, - 0.2346, - 0.8016, - 0.64, - 0.4593, - 0.1561, - 0.5145, - 0.5214, - 0.861, - 0.6161, - 0.6256, - 0.1277, - 0.4688, - 0.945, - 0.0175, - 0.396, - 0.4183, - 0.3582, - 0.9272, - 0.5655, - 0.4827, - 0.4521, - 0.4832, - 0.0785, - 0.3401, - 0.0196, - 0.3984, - 0.2995, - 0.131, - 0.3215, - 0.6108, - 0.6257, - 0.6813, - 0.144, - 0.8993, - 0.8366, - 0.3531, - 0.3764, - 0.2501, - 0.1446, - 0.726, - 0.4213, - 0.9824, - 0.4409, - 0.4269, - 0.5738, - 0.2205, - 0.7198, - 0.5324, - 0.4369, - 0.682, - 0.9951, - 0.0233, - 0.9612, - 0.7069, - 0.1677, - 0.2874, - 0.7796, - 0.577, - 0.9416, - 0.4704, - 0.3914, - 0.3058, - 0.7079, - 0.3713, - 0.618, - 0.1185, - 0.5879, - 0.9991, - 0.2802, - 0.3271, - 0.3419, - 0.0229, - 0.1469, - 0.2055, - 0.9412, - 0.9755, - 0.246, + 0.3425, + 0.0857, + 0.8117, + 0.499, + 0.9219, + 0.7738, + 0.3621, + 0.4482, + 0.8607, + 0.552, + 0.1793, + 0.4632, + 0.8608, + 0.1778, + 0.9193, + 0.2696, + 0.5161, + 0.5986, + 0.457, + 0.794, + 0.0143, + 0.862, + 0.6178, + 0.8779, + 0.3591, + 0.5411, + 0.7562, + 0.2549, + 0.9613, + 0.1135, + 0.8631, 0.6849, - 0.5977, - 0.2859, - 0.7056, - 0.6558, - 0.9105, - 0.0293, - 0.4093, - 0.2527, - 0.0807, - 0.4459, - 0.8872, - 0.8268, - 0.6916, - 0.555, - 0.9737, - 0.9865, - 0.8094, - 0.2273, - 0.3489, - 0.5619, - 0.0453, - 0.8309, - 0.3606, - 0.0566, - 0.6373, - 0.6993, - 0.7932, - 0.873, - 0.5741, - 0.1273, - 0.473, - 0.5554, - 0.7278, - 0.887, - 0.3318, - 0.5951, - 0.1649, - 0.3246, - 0.3051, - 0.741, - 0.3832, + 0.4095, + 0.0631, + 0.1932, + 0.1339, + 0.6241, + 0.194, + 0.5107, + 0.4192, + 0.9056, + 0.6399, + 0.4571, + 0.908, + 0.587, + 0.9263, + 0.2208, + 0.0966, + 0.0707, + 0.3552, + 0.381, + 0.0309, + 0.2517, + 0.0001, + 0.0263, + 0.143, + 0.4302, + 0.507, + 0.9278, + 0.49, + 0.1542, + 0.6314, 0.723, - 0.4325, - 0.114, - 0.9071, - 0.564, - 0.2098, - 0.3521, - 0.7383, - 0.4715, - 0.5745, - 0.2355, - 0.634, - 0.0934, - 0.8216, - 0.272, - 0.9369, - 0.4025, - 0.963, - 0.957, - 0.9518, - 0.3148, - 0.4054, - 0.9465, - 0.1967, + 0.6006, + 0.7535, + 0.6321, + 0.2353, + 0.8466, + 0.4891, + 0.0551, + 0.626, + 0.072, + 0.4411, + 0.6269, + 0.1417, + 0.1458, + 0.7229, + 0.495, + 0.7279, + 0.5893, + 0.5256, + 0.8981, + 0.426, + 0.4432, + 0.8321, + 0.5403, + 0.1601, + 0.5956, + 0.8794, + 0.715, + 0.4515, + 0.2375, + 0.6625, + 0.6675, 0.7854, - 0.8273, - 0.1315, - 0.9469, - 0.303, - 0.704, - 0.3526, - 0.3777, - 0.225, - 0.6604, - 0.9716, - 0.4019, - 0.4986, - 0.7627, - 0.6319, - 0.979, - 0.962, - 0.8023, - 0.7427, - 0.4574, - 0.6462, - 0.7721, - 0.7341, - 0.1703, - 0.1617, - 0.3753, - 0.5309, - 0.4999, - 0.5934, - 0.8659, - 0.1858, - 0.2691, - 0.2051, - 0.2336, - 0.2801, - 0.5655, - 0.4612, - 0.7989, - 0.1521, - 0.1513, - 0.0331, - 0.5885, - 0.0394, - 0.6785, - 0.3471, - 0.5353, - 0.6709, - 0.2851, - 0.7169, - 0.9634, - 0.5961, - 0.8289, - 0.9786, - 0.2281, - 0.2734, - 0.2044, - 0.1481, - 0.1986, - 0.3973, - 0.2447, - 0.7734, - 0.2431, - 0.533, - 0.0644, - 0.3078, - 0.2325, - 0.5313, - 0.0342, - 0.8122, + 0.9785, + 0.5646, + 0.3653, + 0.019, + 0.9147, + 0.332, + 0.8756, + 0.6228, + 0.668, + 0.4564, + 0.0799, + 0.5151, + 0.5366, + 0.6563, + 0.0302, + 0.1247, + 0.1316, + 0.3998, + 0.7557, + 0.3867, + 0.575, + 0.2865, + 0.4591, + 0.629, + 0.4686, + 0.8603, + 0.525, + 0.7193, + 0.4228, + 0.5635, + 0.706, + 0.3747, + 0.9542, + 0.5486, + 0.3434, + 0.9898, 0.0334, - 0.8049, - 0.6156, - 0.4981, - 0.5709, - 0.3775, - 0.0994, - 0.6868, - 0.357, - 0.5186, - 0.8739, - 0.7783, - 0.2075, - 0.0816, - 0.5748, - 0.3366, - 0.9426, - 0.8469, - 0.7983, - 0.7143, - 0.3348, - 0.2733, - 0.7338, - 0.1875, - 0.4769, - 0.4694, - 0.5974, - 0.863, - 0.7448, - 0.9624, - 0.3872, - 0.5567, - 0.1987, - 0.8357, - 0.2113, - 0.0563, - 0.7419, - 0.7756, - 0.5363, - 0.1842, - 0.0415, - 0.5431, - 0.4707, - 0.3569, - 0.6817, - 0.5403, - 0.5566, - 0.9207, - 0.0825, - 0.6069, - 0.8203, - 0.0856, - 0.9869, - 0.2657, - 0.6712, - 0.454, - 0.4744, - 0.7117, - 0.7288, - 0.9613, - 0.5626, - 0.4253, - 0.2264, - 0.4495, - 0.8667, - 0.3302, - 0.1957, - 0.0273, - 0.7703, - 0.8766, - 0.0902, - 0.778, - 0.1886, - 0.1962, - 0.3771, - 0.1645, - 0.2341, - 0.6249, - 0.1781, - 0.5452, - 0.025, - 0.9812, - 0.476, - 0.2944, - 0.3296, - 0.2083, - 0.8466, - 0.1556, - 0.9798, - 0.9155, - 0.6381, - 0.8525, - 0.2125, - 0.4172, - 0.0923, - 0.563, - 0.8077, - 0.6875, - 0.9453, - 0.3695, - 0.8132, - 0.0161, - 0.4337, - 0.7397, - 0.7001, - 0.9161, - 0.1311, - 0.2395, - 0.0638, - 0.4141, - 0.7393, - 0.3218, - 0.8459, - 0.5892, - 0.1181, - 0.6546, - 0.9731, - 0.2831, - 0.8871, - 0.5038, - 0.7785, - 0.4766, - 0.1493, - 0.4238, - 0.9722, - 0.5958, - 0.2599, - 0.5643, - 0.5558, - 0.7597, - 0.6497, - 0.0278, - 0.8637, - 0.3462, - 0.075, - 0.8579, - 0.0777, - 0.7194, - 0.7617, - 0.6286, - 0.038, - 0.1296, - 0.778, - 0.701, - 0.6416, - 0.409, - 0.3301, - 0.3517, - 0.0326, - 0.8713, - 0.2409, - 0.7519, - 0.0539, - 0.4066, - 0.7538, - 0.2216, - 0.2235, - 0.2318, - 0.0425, - 0.8329, - 0.8933, - 0.5434, - 0.0768, - 0.1435, - 0.5014, - 0.9704, - 0.6957, - 0.5542, - 0.8522, - 0.6547, - 0.8251, - 0.0145, - 0.5428, - 0.6999, - 0.9533, - 0.7785, - 0.272, - 0.5718, - 0.3099, - 0.7414, - 0.4012, - 0.2748, - 0.7012, - 0.7091, - 0.2446, - 0.9202, - 0.1735, - 0.6087, - 0.772, - 0.3311, - 0.3635, - 0.1782, - 0.5249, - 0.2974, - 0.4578, - 0.1426, - 0.8101, - 0.8089, - 0.4872, - 0.4746, - 0.2452, - 0.9266, - 0.3606, - 0.6642, - 0.4639, - 0.9, - 0.552, - 0.4539, - 0.265, - 0.9996, - 0.5915, - 0.8291, + 0.5793, + 0.0741, + 0.0534, + 0.7088, + 0.7936, + 0.2811, + 0.0894, + 0.8716, + 0.0663, + 0.7269, + 0.1577, + 0.1678, + 0.6037, + 0.9502, + 0.2825, + 0.5863, + 0.5302, + 0.8691, + 0.7234, + 0.8365, + 0.2884, + 0.5778, + 0.4783, + 0.0096, + 0.4175, + 0.7919, + 0.1023, + 0.9125, + 0.7749, + 0.5023, + 0.8793, + 0.8415, + 0.5317, + 0.4926, + 0.4628, + 0.9648, + 0.9028, + 0.0885, + 0.0871, + 0.9066, + 0.069, + 0.3911, + 0.8191, + 0.6403, + 0.0127, + 0.3391, + 0.2239, + 0.761, + 0.2711, + 0.3341, + 0.9703, + 0.5189, + 0.4321, + 0.4863, + 0.8632, + 0.2628, + 0.3768, + 0.954, + 0.138, + 0.5082, + 0.4119, + 0.9234, + 0.2901, + 0.7383, + 0.9612, + 0.4647, + 0.5735, + 0.4506, + 0.7326, + 0.7391, + 0.5231, + 0.5439, + 0.7963, + 0.4006, + 0.1003, + 0.8281, + 0.7571, + 0.2124, + 0.7067, + 0.8852, + 0.807, + 0.8689, + 0.0921, + 0.6039, + 0.4376, + 0.3468, + 0.593, + 0.0667, + 0.4587, + 0.0564, + 0.061, + 0.9822, + 0.4767, + 0.8843, + 0.9563, + 0.7713, + 0.6471, 0.6867, - 0.3659, - 0.5022, - 0.5527, - 0.4018, - 0.3063, - 0.6426, - 0.2282, - 0.2709, - 0.132, - 0.7684, - 0.4101, - 0.2831, - 0.8145, - 0.3625, - 0.7931, - 0.2318, - 0.7551, - 0.9316, - 0.2973, - 0.7031, - 0.3967, - 0.112, - 0.2592, - 0.4197, - 0.1963, - 0.4829, - 0.6417, - 0.5242, + 0.3234, + 0.9595, + 0.6806, + 0.4405, + 0.3474, + 0.7824, + 0.4775, + 0.8868, + 0.9537, + 0.8422, + 0.353, + 0.1927, + 0.8829, + 0.1965, + 0.0208, + 0.8862, + 0.2382, + 0.4028, + 0.8617, + 0.4238, + 0.9259, + 0.6366, + 0.16, + 0.5802, + 0.5738, + 0.7762, + 0.5452, + 0.8455, + 0.4877, + 0.8627, + 0.6223, + 0.0662, + 0.0653, + 0.9872, + 0.4522, + 0.9897, + 0.039, + 0.3641, + 0.6935, + 0.0505, + 0.7997, + 0.7822, + 0.3632, + 0.9772, + 0.1165, + 0.2804, + 0.4558, + 0.3687, + 0.1264, + 0.7494, + 0.1768, + 0.8207, 0.7351, - 0.7834, - 0.1483, - 0.2963, - 0.5235, - 0.1857, - 0.5341, - 0.8565, - 0.2178, - 0.8593, - 0.1041, - 0.1736, - 0.1225, - 0.9752, - 0.0167, - 0.6896, - 0.171, - 0.7276, - 0.5611, - 0.0571, - 0.212, - 0.1852, - 0.6878, - 0.3567, - 0.8637, - 0.9603, - 0.7944, - 0.4381, + 0.4239, + 0.774, + 0.9522, + 0.2287, + 0.1471, + 0.3074, + 0.3111, + 0.5306, + 0.0349, + 0.676, + 0.1116, + 0.2543, + 0.148, + 0.9128, + 0.0346, + 0.2722, + 0.3379, + 0.8344, 0.2313, - 0.0931, - 0.3268, - 0.1572, - 0.8713, - 0.8268, - 0.8232, - 0.4935, - 0.01, - 0.882, - 0.0082, - 0.8601, - 0.4201, + 0.6277, + 0.5366, + 0.6684, + 0.8839, + 0.4563, + 0.6535, + 0.0458, + 0.9218, + 0.5582, + 0.8035, + 0.7544, + 0.1496, + 0.0476, + 0.5882, + 0.6056, + 0.0519, + 0.8692, + 0.0662, + 0.0174, + 0.2541, + 0.7012, + 0.2599, + 0.1262, + 0.9822, + 0.3096, + 0.7006, + 0.4295, + 0.8297, + 0.9129, + 0.3819, + 0.3432, + 0.1155, + 0.3206, + 0.0492, + 0.4125, + 0.864, + 0.3988, + 0.328, + 0.3311, + 0.8521, + 0.5432, + 0.7066, + 0.3822, + 0.8873, + 0.4885, + 0.025, + 0.0587, + 0.3356, + 0.5685, + 0.2902, + 0.1319, + 0.3588, + 0.9177, + 0.291, + 0.4358, + 0.4232, + 0.7552, + 0.5512, + 0.6803, + 0.0231, + 0.5398, + 0.0766, + 0.1057, + 0.2007, + 0.4077, + 0.3531, + 0.8243, + 0.6214, + 0.2812, + 0.8442, + 0.7541, + 0.5102, + 0.1548, + 0.9618, + 0.2799, + 0.9035, + 0.8429, + 0.5711, + 0.4771, + 0.2945, + 0.5881, + 0.9704, + 0.2289, + 0.2139, + 0.3612, + 0.0178, + 0.9174, + 0.5583, 0.4175, - 0.0098, - 0.9004, - 0.65, - 0.3421, - 0.3183, - 0.3326, - 0.2915, - 0.5665, - 0.8285, - 0.4294, - 0.2688, - 0.2098, - 0.3371, - 0.386, - 0.5686, - 0.8937, - 0.0377, - 0.985, - 0.9514, - 0.3097, - 0.6465, - 0.8722, - 0.0071, - 0.8027, - 0.2106, - 0.5604, - 0.1241, - 0.1804, - 0.8574, - 0.0251, - 0.3674, - 0.5228, - 0.9284, - 0.1663, - 0.202, - 0.338, - 0.7578, - 0.6925, - 0.3933, - 0.2046, - 0.6801, - 0.7194, - 0.5129, - 0.1975, - 0.7029, - 0.3181, - 0.1295, - 0.5228, - 0.4489, - 0.7999, - 0.7918, - 0.7904, - 0.4531, - 0.2753, - 0.1385, - 0.6371, - 0.5885, - 0.1553, - 0.2417, - 0.1237, - 0.9445, - 0.1926, - 0.0829, - 0.209, - 0.2626, - 0.0284, - 0.1765, - 0.5533, - 0.2548, - 0.9076, - 0.8674, - 0.5807, - 0.1016, - 0.1317, - 0.3715, - 0.3148, - 0.2884, - 0.7498, - 0.1975, - 0.2989, - 0.5839, - 0.9945, - 0.7159, - 0.5017, - 0.0779, - 0.8238, - 0.9475, - 0.4096, - 0.3193, - 0.461, - 0.4944, - 0.0027, - 0.6006, - 0.7273, - 0.0395, - 0.4906, - 0.8687, - 0.2403, - 0.9718, - 0.2152, - 0.8123, - 0.1944, - 0.1799, - 0.1063, - 0.956, - 0.7161, - 0.2413, - 0.908, - 0.1852, - 0.4893, - 0.6311, - 0.8212, - 0.0035, - 0.9833, - 0.5232, - 0.3198, - 0.5119, - 0.409, - 0.26, - 0.261, - 0.4125, - 0.4915, - 0.4357, - 0.4483, - 0.4674, - 0.5199, - 0.1753, - 0.5805, - 0.5261, - 0.6539, - 0.4558, - 0.2704, - 0.8022, - 0.2895, - 0.6178, - 0.7482, - 0.0162, - 0.7082, - 0.8981, - 0.6984, - 0.289, - 0.6248, - 0.1411, - 0.4288, - 0.1502, - 0.6453, - 0.6342, - 0.414, - 0.1031, - 0.53, - 0.9861, - 0.4399, - 0.9831, - 0.655, - 0.837, - 0.1719, - 0.202, - 0.8398, - 0.7025, - 0.0047, - 0.2269, - 0.5035, - 0.5299, - 0.9608, - 0.8085, - 0.5462, - 0.4673, - 0.4909, - 0.3659, - 0.6487, - 0.9883, - 0.6748, - 0.4381, - 0.511, - 0.2818, - 0.5919, - 0.8712, - 0.0879, - 0.195, - 0.4187, - 0.5252, - 0.7335, - 0.0921, - 0.3466, - 0.3133, - 0.5348, - 0.8272, - 0.9536, - 0.7786, - 0.9421, - 0.1877, - 0.8051, - 0.1618, - 0.4363, - 0.6389, - 0.7593, - 0.508, - 0.871, - 0.3426, - 0.1368, - 0.8914, - 0.5975, - 0.8719, - 0.2047, - 0.892, - 0.4963, - 0.8556, - 0.7689, - 0.8149, - 0.4443, - 0.904, - 0.275, - 0.8211, - 0.6702, - 0.9904, - 0.6263, - 0.6474, - 0.0857, - 0.1744, - 0.843, - 0.8949, - 0.178, - 0.438, - 0.1615, - 0.7172, - 0.6221, - 0.0812, - 0.4374, - 0.8134, - 0.7401, - 0.4907, - 0.8159, - 0.4597, - 0.9241, - 0.743, - 0.0584, - 0.5439, - 0.5288, - 0.6369, - 0.2253, - 0.018, - 0.5859, - 0.7838, - 0.6473, - 0.0325, - 0.2195, - 0.7184, - 0.7888, - 0.6229, - 0.2519, - 0.6642, - 0.6548, - 0.7752, - 0.2576, - 0.5449, - 0.7547, - 0.0084, - 0.6796, - 0.2004, - 0.1258, - 0.5832, - 0.8551, - 0.1987, - 0.916, - 0.1851, - 0.4802, - 0.0467, - 0.4518, - 0.9396, - 0.2151, - 0.1462, - 0.8687, + 0.5704, + 0.7382, + 0.0135, + 0.9555, + 0.3092, + 0.0987, + 0.2169, + 0.0661, + 0.9393, + 0.8262, 0.9315, - 0.0136, - 0.1539, - 0.7126, - 0.8598, - 0.0143, - 0.2936, - 0.3426, - 0.2495, - 0.1559, - 0.1175, - 0.4407, - 0.2887, - 0.2397, - 0.1934, - 0.896, - 0.9961, - 0.3704, - 0.4284, - 0.1496, - 0.478, - 0.7814, - 0.6133, - 0.5723, - 0.9526, - 0.2767, - 0.7483, - 0.4767, - 0.7763, - 0.3512, - 0.6642, - 0.7552, - 0.3496, - 0.7783, - 0.2156, - 0.5561, - 0.5798, - 0.4458, - 0.1069, - 0.3082, - 0.629, - 0.9951, - 0.2554, - 0.7104, - 0.1349, - 0.6774, - 0.3058, - 0.7738, - 0.0975, - 0.7289, - 0.2624, - 0.3136, - 0.7541, - 0.4383, - 0.251, - 0.4574, - 0.5747, - 0.911, - 0.8511, - 0.0407, - 0.4775, - 0.2873, - 0.5139, - 0.0697, - 0.8055, - 0.5382, - 0.3251, - 0.659, - 0.9964, - 0.3115, - 0.4388, - 0.5401, - 0.4478, - 0.4735, - 0.8077, - 0.9327, - 0.0904, - 0.5791, - 0.4775, - 0.8684, - 0.1859, - 0.8483, - 0.2916, - 0.1579, - 0.2162, - 0.933, - 0.0647, - 0.1187, - 0.2701, - 0.1272, - 0.0066, - 0.517, - 0.7592, - 0.0947, - 0.3787, - 0.5413, - 0.5048, - 0.1234, - 0.2501, - 0.9061, - 0.4365, - 0.7361, - 0.1866, - 0.6346, - 0.127, - 0.219, - 0.6409, - 0.5245, - 0.9573, - 0.3175, - 0.0401, - 0.2204, - 0.2764, - 0.7517, - 0.2832, - 0.1288, - 0.2318, - 0.2303, - 0.2247, - 0.819, - 0.2495, - 0.2731, - 0.4543, - 0.4567, - 0.0724, - 0.8079, + 0.2797, + 0.471, + 0.9222, + 0.0357, + 0.4164, + 0.1747, + 0.9354, + 0.8817, + 0.998, + 0.1002, + 0.7159, + 0.034, + 0.0699, + 0.9914, 0.1919, + 0.9606, + 0.4047, + 0.2581, + 0.9009, + 0.9153, + 0.6594, + 0.4562, + 0.6686, + 0.0726, + 0.0296, + 0.0665, + 0.3051, + 0.5064, + 0.521, + 0.9895, 0.0596, - 0.9846, - 0.621, - 0.1745, - 0.942, - 0.8127, - 0.0084, - 0.1829, - 0.5835, - 0.4647, - 0.4645, - 0.1895, - 0.6492, - 0.4469, - 0.5669, - 0.8411, - 0.6859, - 0.7772, - 0.8145, - 0.3363, - 0.6821, - 0.2219, - 0.4117, - 0.4608, - 0.7169, - 0.9222, - 0.9503, - 0.9401, - 0.0497, - 0.0131, - 0.8799, - 0.8044, - 0.9221, - 0.5837, - 0.1028, - 0.2224, - 0.5343, - 0.1526, - 0.3977, - 0.5013, - 0.3103, - 0.6626, - 0.3629, - 0.2536, - 0.2446, - 0.9091, - 0.6786, - 0.8331, - 0.9339, - 0.7865, - 0.5062, - 0.3163, - 0.1701, - 0.0155, - 0.6248, - 0.9324, - 0.1147, - 0.1827, - 0.1771, - 0.0318, - 0.2809, - 0.8055, - 0.9048, - 0.2408, - 0.8057, - 0.3831, - 0.1024, - 0.1542, - 0.2015, - 0.6779, - 0.3069, + 0.7425, + 0.6223, + 0.0776, + 0.8802, + 0.1851, + 0.3011, + 0.0009, + 0.4402, + 0.7009, + 0.7048, + 0.7699, + 0.8693, + 0.4135, + 0.6582, + 0.9832, + 0.9726, + 0.2242, + 0.6422, + 0.5256, + 0.5959, + 0.9825, + 0.6673, + 0.0184, + 0.1609, + 0.0643, + 0.86, + 0.3734, + 0.8549, + 0.2559, + 0.134, + 0.6298, + 0.6574, + 0.2757, + 0.8888, + 0.4698, + 0.2404, + 0.318, + 0.0624, + 0.7709, + 0.4289, + 0.0177, + 0.8381, + 0.257, + 0.0139, + 0.5527, + 0.6519, + 0.3307, + 0.5507, + 0.0734, + 0.8678, + 0.0306, + 0.4777, + 0.6737, + 0.1481, + 0.1958, + 0.9724, + 0.4526, + 0.1082, + 0.0678, + 0.3276, + 0.7655, + 0.162, + 0.4992, + 0.445, + 0.8688, + 0.3814, + 0.1241, + 0.5092, + 0.4324, + 0.7555, + 0.9865, + 0.1723, + 0.4909, + 0.5274, 0.5468, - 0.7762, - 0.2292, - 0.9464, - 0.5469, - 0.4556, - 0.5242, - 0.4126, - 0.6019, - 0.0104, - 0.1453, - 0.8456, - 0.8745, - 0.0377, - 0.4384, - 0.8697, - 0.2927, - 0.8496, - 0.0302, - 0.3629, - 0.4206, - 0.5868, - 0.7436, - 0.052, - 0.1304, - 0.8443, - 0.5679, - 0.4398, - 0.3934, - 0.9607, - 0.6511, - 0.3433, - 0.2521, - 0.0903, - 0.4421, - 0.9586, - 0.6634, - 0.2798, - 0.0942, - 0.2492, - 0.8904, - 0.8826, - 0.4575, - 0.1169, - 0.2343, - 0.3101, - 0.7327, - 0.4186, - 0.1796, - 0.8905, - 0.0904, - 0.905, - 0.6607, - 0.9395, - 0.6885, - 0.2835, - 0.1384, - 0.1257, - 0.6725, - 0.0508, - 0.9017, - 0.4221, - 0.6243, - 0.2472, - 0.5692, - 0.7432, - 0.2432, - 0.8234, - 0.8215, - 0.9112, - 0.8009, - 0.7879, - 0.635, - 0.9652, - 0.2554, - 0.3086, - 0.1395, - 0.4175, - 0.7793, - 0.8087, - 0.8219, - 0.814, - 0.5719, - 0.6682, - 0.0863, - 0.9623, - 0.3949, - 0.4608, - 0.9292, - 0.4903, - 0.4388, - 0.0224, - 0.4259, - 0.1302, - 0.2592, - 0.3754, - 0.4207, - 0.819, - 0.9323, - 0.2079, - 0.3238, - 0.6825, - 0.234, - 0.0796, - 0.9283, - 0.1161, - 0.6683, - 0.8407, - 0.3624, - 0.1744, - 0.6405, - 0.1587, - 0.9225, - 0.008, - 0.037, - 0.0489, - 0.9066, - 0.8298, - 0.3067, - 0.8294, - 0.4939, - 0.0444, - 0.5365, + 0.6952, + 0.086, + 0.9845, + 0.1899, + 0.2593, + 0.6343, + 0.6269, + 0.0123, + 0.221, + 0.2393, + 0.4051, + 0.068, + 0.0552, + 0.2129, + 0.954, + 0.1667, + 0.7282, + 0.4011, + 0.2545, + 0.6693, + 0.7374, + 0.4683, + 0.7924, + 0.0644, 0.753, - 0.0639, - 0.6246, - 0.9854, - 0.0247, + 0.3038, + 0.3327, + 0.6432, + 0.5733, + 0.6169, + 0.0733, + 0.3371, + 0.6416, + 0.2302, + 0.0967, + 0.9019, + 0.2883, + 0.7746, + 0.388, + 0.9641, + 0.6589, + 0.8862, + 0.3137, + 0.8683, + 0.8431, + 0.7539, + 0.6305, + 0.9444, + 0.2378, + 0.2262, + 0.1903, + 0.2142, + 0.9638, + 0.6113, + 0.223, + 0.3393, + 0.3925, + 0.6661, + 0.9045, + 0.8649, + 0.257, 0.2779, - 0.6544, - 0.8048, - 0.4025, - 0.035, - 0.6879, - 0.3277, + 0.7136, + 0.9755, + 0.2587, + 0.6089, + 0.1251, + 0.0162, + 0.8882, + 0.4867, + 0.9685, + 0.9043, + 0.2122, + 0.7464, + 0.768, + 0.1841, + 0.2006, + 0.8249, + 0.2973, + 0.7199, + 0.3489, + 0.666, + 0.4931, + 0.8143, + 0.5589, + 0.0834, + 0.7469, + 0.4374, + 0.6686, + 0.5334, + 0.1047, + 0.0431, + 0.5037, + 0.0874, + 0.9286, + 0.4072, + 0.7062, + 0.3189, + 0.5341, + 0.0335, + 0.031, + 0.9955, + 0.0741, + 0.6516, + 0.0104, + 0.6268, + 0.6809, + 0.9233, + 0.4388, + 0.3553, + 0.5656, + 0.5765, + 0.9349, + 0.8331, + 0.6662, + 0.4162, + 0.5764, + 0.2043, + 0.5511, + 0.2782, + 0.6534, + 0.5199, + 0.6899, + 0.6472, + 0.2703, + 0.705, + 0.7467, + 0.7673, + 0.852, + 0.0062, + 0.1837, + 0.691, + 0.3883, + 0.1972, + 0.4008, + 0.0471, + 0.5728, + 0.0076, + 0.8031, + 0.7712, + 0.7179, + 0.0042, + 0.2817, + 0.4483, + 0.2824, + 0.7557, 0.4244, - 0.8479, - 0.8751, - 0.3103, - 0.6189, - 0.3974, - 0.1461, - 0.3434, - 0.5673, - 0.8164, - 0.9124, - 0.6493, - 0.1848, - 0.4971, - 0.7214, - 0.404, - 0.8373, - 0.3546, - 0.0748, - 0.3914, - 0.6757, - 0.7181, - 0.2187, - 0.6359, - 0.1531, - 0.1209, - 0.3272, - 0.5013, - 0.3371, - 0.8297, - 0.236, - 0.2917, - 0.1286, - 0.1864, - 0.2449, - 0.1054, - 0.9242, - 0.3696, - 0.6781, - 0.3858, + 0.0726, + 0.476, + 0.5517, + 0.0034, + 0.0331, + 0.543, + 0.3273, + 0.5598, + 0.9004, + 0.3623, + 0.0272, + 0.4009, + 0.3113, + 0.7029, + 0.8569, + 0.2296, + 0.5176, + 0.2692, + 0.7239, + 0.5793, + 0.3647, + 0.6932, + 0.3146, + 0.5227, + 0.1747, 0.952, - 0.8929, - 0.7715, - 0.2301, - 0.1322, - 0.4761, - 0.7053, - 0.6831, - 0.4635, - 0.8218, - 0.3288, - 0.2986, - 0.9819, - 0.7356, - 0.4484, - 0.2427, - 0.0, - 0.2522, - 0.34, - 0.9473, - 0.6878, - 0.8553, - 0.4972, - 0.052, - 0.5697, - 0.3739, + 0.8291, + 0.0439, + 0.1203, + 0.1098, + 0.0811, + 0.2633, + 0.1315, + 0.3309, + 0.2706, + 0.8793, + 0.3025, + 0.1508, + 0.1565, + 0.8949, + 0.7062, + 0.6469, + 0.4083, + 0.3278, + 0.0512, + 0.5853, + 0.2786, + 0.6015, + 0.8665, + 0.5343, + 0.7509, + 0.7591, + 0.9878, + 0.1949, + 0.7875, + 0.7797, + 0.3274, + 0.6822, + 0.2306, + 0.909, + 0.761, + 0.2731, + 0.867, + 0.7047, + 0.6479, + 0.4008, + 0.4459, + 0.719, + 0.9465, + 0.4015, + 0.509, + 0.9552, + 0.7254, + 0.8846, + 0.5181, + 0.6716, + 0.5508, + 0.7806, + 0.0438, + 0.4898, + 0.5579, + 0.4416, + 0.2119, + 0.7921, + 0.0051, + 0.6721, + 0.6694, + 0.8982, + 0.2441, + 0.8344, + 0.6994, 0.7233, - 0.1402, - 0.6615, - 0.1649, + 0.7894, + 0.0136, + 0.5741, + 0.47, + 0.4236, + 0.6074, 0.1493, - 0.8974, - 0.8819, - 0.9256, - 0.8794, - 0.7937, - 0.8198, - 0.6615, - 0.1005, - 0.2242, - 0.1438, - 0.3372, - 0.1191, - 0.0803, - 0.9577, - 0.9337, - 0.3368, - 0.5213, - 0.7243, - 0.1754, - 0.8117, + 0.7856, + 0.4525, + 0.8874, + 0.7017, + 0.6544, + 0.3533, + 0.4279, + 0.0632, + 0.1728, + 0.3694, + 0.2135, + 0.2074, + 0.546, + 0.1493, + 0.5614, + 0.7878, + 0.8744, + 0.2581, + 0.583, + 0.3533, + 0.8809, + 0.638, + 0.8551, + 0.3312, + 0.5344, + 0.8942, + 0.0451, + 0.2382, + 0.1604, + 0.3154, + 0.639, + 0.1343, + 0.3154, + 0.386, + 0.435, + 0.5218, + 0.2451, + 0.757, + 0.5247, 0.6466, - 0.122, - 0.1183, - 0.551, - 0.0102, - 0.9004, - 0.779, - 0.3831, - 0.6045, - 0.4404, - 0.8455, - 0.2704, - 0.3622, - 0.7948, - 0.9416, - 0.3054, - 0.5471, - 0.5284, - 0.6291, - 0.5686, - 0.8791, - 0.2573, - 0.7639, - 0.3409, - 0.196, - 0.1602, - 0.0966, - 0.5026, - 0.0645, - 0.5584, - 0.7126, - 0.9367, - 0.8827, - 0.2906, - 0.9395, - 0.1788, - 0.3117, - 0.8606, - 0.8824, - 0.9504, - 0.9636, - 0.6923, - 0.2369, - 0.9828, - 0.4891, - 0.6422, - 0.5775, - 0.9284, - 0.9915, - 0.7244, - 0.9861, - 0.1861, - 0.1398, - 0.5752, - 0.6266, - 0.9, - 0.0858, - 0.9008, - 0.6473, - 0.4026, - 0.4917, - 0.718, - 0.1067, - 0.934, - 0.532, - 0.8415, - 0.4139, - 0.6089, - 0.773, - 0.9604, - 0.4838, - 0.6641, - 0.1686, - 0.1746, - 0.6732, - 0.3223, - 0.1107, - 0.1185, - 0.7473, - 0.4923, - 0.7997, - 0.9685, - 0.6527, - 0.1333, - 0.6009, - 0.4862, - 0.4083, + 0.9678, + 0.7455, + 0.1987, + 0.2156, + 0.4797, + 0.7065, + 0.7419, + 0.1021, + 0.0861, + 0.8002, + 0.9707, + 0.9814, + 0.3465, + 0.2618, + 0.3072, + 0.1293, + 0.5272, + 0.7368, + 0.6488, + 0.7612, + 0.157, + 0.3222, + 0.3923, + 0.5705, + 0.6781, + 0.3473, + 0.7196, + 0.6571, + 0.3259, + 0.307, + 0.2879, + 0.6817, + 0.8096, + 0.9805, + 0.1019, + 0.5347, + 0.9188, + 0.6869, + 0.1552, + 0.3034, + 0.7534, + 0.2281, + 0.535, + 0.1035, + 0.8635, + 0.3788, + 0.9967, + 0.9379, + 0.0614, + 0.468, + 0.9819, + 0.9272, + 0.3563, + 0.4303, + 0.2693, + 0.1058, + 0.2419, + 0.0939, + 0.73, + 0.7775, + 0.0001, + 0.4932, + 0.754, + 0.8731, + 0.9546, + 0.4824, + 0.538, + 0.809, + 0.1524, + 0.6186, + 0.6592, + 0.7023, + 0.0499, + 0.696, + 0.7653, + 0.9994, + 0.2796, + 0.9233, + 0.4067, + 0.3373, + 0.6419, + 0.2838, + 0.8887, + 0.5779, + 0.3568, + 0.9352, + 0.6928, + 0.976, + 0.1439, + 0.369, + 0.0065, + 0.8878, + 0.8702, + 0.6167, + 0.0964, + 0.14, + 0.0599, + 0.8164, + 0.3357, + 0.4216, + 0.2039, + 0.1938, + 0.1898, + 0.984, + 0.729, 0.7112, - 0.1143, - 0.3961, - 0.5933, - 0.9002, - 0.8459, - 0.32, - 0.1875, - 0.951, - 0.5294, - 0.2859, - 0.6658, - 0.2575, - 0.0203, - 0.4368, - 0.9145, - 0.2901, - 0.1403, - 0.3801, - 0.4491, - 0.2555, - 0.903, - 0.9997, - 0.4719, - 0.7732, - 0.3257, - 0.0149, - 0.9752, + 0.3545, + 0.9195, + 0.207, + 0.8249, + 0.7638, + 0.3548, + 0.356, + 0.0238, + 0.1941, + 0.172, + 0.6687, + 0.4901, + 0.7125, + 0.4755, + 0.1039, + 0.5626, + 0.7756, + 0.9245, + 0.6268, + 0.7225, + 0.6884, + 0.9826, + 0.5806, + 0.6641, + 0.5027, + 0.7478, + 0.3376, + 0.5212, + 0.1643, + 0.0008, + 0.4781, + 0.3275, + 0.4024, + 0.6666, + 0.6373, + 0.7647, + 0.4191, + 0.5972, + 0.8735, + 0.3025, + 0.2414, + 0.3311, 0.5618, - 0.2363, - 0.5888, - 0.1998, - 0.7304, - 0.9712, - 0.3608, - 0.7389, - 0.7864, - 0.4683, - 0.9307, - 0.3491, - 0.1078, - 0.7208, - 0.0335, - 0.5559, - 0.4842, - 0.266, - 0.9951, - 0.0445, - 0.8055, - 0.5094, - 0.8823, - 0.8917, - 0.2152, - 0.3422, - 0.5965, - 0.7887, - 0.517, - 0.827, - 0.7381, - 0.9054, - 0.9685, - 0.6859, - 0.819, - 0.6726, + 0.0861, + 0.6529, + 0.9457, + 0.9084, + 0.7976, + 0.9686, + 0.437, + 0.95, + 0.1628, + 0.3031, + 0.6006, + 0.0756, + 0.58, + 0.194, + 0.8174, + 0.9158, + 0.3631, + 0.0866, + 0.1265, + 0.5512, + 0.4134, + 0.0733, + 0.5354, + 0.1487, + 0.317, + 0.1493, + 0.6482, + 0.094, + 0.5808, + 0.4256, + 0.9413, + 0.589, + 0.6616, + 0.6917, + 0.4681, + 0.9624, + 0.6119, + 0.4075, + 0.3278, + 0.8118, + 0.8436, + 0.6606, + 0.6801, + 0.2613, + 0.4077, + 0.7006, + 0.6666, + 0.7145, + 0.7495, + 0.7385, + 0.6917, + 0.9268, + 0.9846, + 0.3009, + 0.9898, + 0.249, + 0.1452, + 0.5872, + 0.4424, + 0.0464, + 0.7254, + 0.0565, + 0.9733, + 0.8551, + 0.6228, + 0.9403, 0.4893, - 0.1503, - 0.1579, - 0.2461, - 0.3212, - 0.1051, - 0.2707, - 0.7477, - 0.6394, - 0.6634, - 0.9462, - 0.9375, + 0.3585, + 0.5806, + 0.2367, + 0.0374, + 0.0673, + 0.5446, + 0.1143, + 0.0948, + 0.133, + 0.4772, + 0.9687, + 0.1669, + 0.3693, + 0.956, + 0.1798, + 0.2133, + 0.6477, + 0.2897, + 0.7543, + 0.0469, + 0.5735, + 0.0273, + 0.013, + 0.1837, + 0.4872, + 0.3666, + 0.4472, + 0.1619, + 0.2562, + 0.6093, + 0.0044, + 0.5935, + 0.7162, + 0.613, + 0.5954, + 0.8074, + 0.911, + 0.8296, + 0.4271, + 0.6075, + 0.3908, + 0.4349, + 0.9983, + 0.3339, + 0.4881, + 0.0619, + 0.1206, + 0.5176, + 0.1733, + 0.5669, + 0.2643, + 0.5459, + 0.0917, + 0.8783, + 0.1328, + 0.512, + 0.1052, + 0.219, + 0.5254, + 0.9467, + 0.7922, + 0.9781, + 0.4007, + 0.3469, + 0.2896, + 0.2703, + 0.3315, + 0.4199, + 0.823, + 0.4009, + 0.3952, + 0.2091, + 0.891, + 0.0389, + 0.2937, + 0.986, + 0.1002, + 0.2375, + 0.7515, + 0.8609, + 0.1179, + 0.639, + 0.2996, + 0.4815, + 0.0536, + 0.0329, + 0.0304, + 0.8023, + 0.2682, + 0.2376, + 0.0988, + 0.0818, + 0.3042, + 0.978, + 0.8572, + 0.6555, + 0.2762, + 0.1205, + 0.8421, + 0.3789, + 0.4687, + 0.6463, + 0.1007, + 0.0937, + 0.6306, + 0.8216, + 0.391, + 0.9438, + 0.121, + 0.9901, + 0.6944, + 0.1355, + 0.5731, + 0.5145, + 0.8136, + 0.7561, + 0.1988, + 0.0117, + 0.0813, + 0.3833, + 0.2942, + 0.4043, + 0.3583, + 0.3932, + 0.0802, + 0.4945, + 0.755, + 0.7485, + 0.2435, + 0.4777, + 0.2388, + 0.3772, + 0.507, + 0.0627, + 0.3296, + 0.1865, + 0.9685, + 0.7445, + 0.0641, + 0.1673, + 0.3224, + 0.146, + 0.9425, + 0.3179, + 0.4359, + 0.2269, + 0.6831, + 0.6459, + 0.5325, + 0.3777, + 0.1957, + 0.9755, + 0.5566, + 0.0242, + 0.1599, + 0.0763, + 0.592, + 0.6346, + 0.026, + 0.2199, + 0.0804, + 0.5358, + 0.6117, + 0.0081, + 0.097, + 0.8438, + 0.1059, + 0.7822, + 0.3001, + 0.0752, + 0.4498, + 0.4691, + 0.7082, + 0.357, + 0.2539, + 0.2096, + 0.6559, + 0.732, + 0.8452, + 0.0233, + 0.8897, + 0.7506, + 0.7329, + 0.0821, + 0.5761, + 0.5964, + 0.8495, + 0.7456, + 0.4063, + 0.5371, + 0.9868, + 0.7272, + 0.4347, + 0.395, + 0.3331, + 0.0484, + 0.0331, + 0.3432, + 0.8739, + 0.0333, + 0.727, + 0.0256, + 0.5794, + 0.6221, + 0.9073, + 0.2999, + 0.3474, + 0.8072, + 0.8899, + 0.6835, 0.3388, - 0.1423, - 0.2408, - 0.3785, + 0.8565, + 0.7544, + 0.5761, + 0.7297, + 0.1164, + 0.4545, + 0.2642, + 0.1078, + 0.7959, + 0.0147, + 0.501, + 0.1571, + 0.5471, + 0.739, + 0.5416, + 0.3208, + 0.7536, + 0.4045, + 0.5125, + 0.4085, + 0.4294, + 0.7771, + 0.0729, + 0.2487, + 0.0898, + 0.7594, + 0.3143, + 0.8015, + 0.5456, + 0.1462, + 0.7363, + 0.4515, + 0.5701, + 0.5545, + 0.2857, + 0.7822, + 0.7318, + 0.864, 0.1862, - 0.3863, - 0.0153, - 0.2142, - 0.5526, - 0.5508, - 0.9307, - 0.8098, - 0.2047, - 0.5047, - 0.6511, - 0.9691, - 0.544, - 0.6765, - 0.7999, - 0.2451, - 0.9183, - 0.7646, - 0.0767, - 0.8439, - 0.4926, - 0.0952, - 0.8317, - 0.0034, - 0.8273, - 0.5461, - 0.5793, - 0.5426, - 0.0687, - 0.6786, - 0.7128, - 0.2213, - 0.603, - 0.765, - 0.2776, - 0.3085, - 0.9133, - 0.6319, - 0.9241, - 0.1327, - 0.1245, - 0.387, - 0.4396, - 0.1199, - 0.9432, - 0.8404, - 0.0432, - 0.7291, - 0.8504, - 0.3348, - 0.3791, - 0.0682, - 0.4764, - 0.5915, - 0.4294, - 0.2969, - 0.1626, - 0.1556, + 0.1203, + 0.6197, + 0.3831, + 0.5861, + 0.3669, + 0.9517, + 0.3337, + 0.1611, + 0.6821, + 0.7172, + 0.1933, + 0.8995, + 0.4525, + 0.0995, + 0.033, + 0.7494, + 0.3444, + 0.8807, + 0.0738, + 0.9785, + 0.4948, + 0.7545, + 0.1737, + 0.5332, + 0.7652, + 0.8642, + 0.6719, + 0.8199, + 0.2368, + 0.1859, + 0.328, + 0.7742, + 0.5605, + 0.7554, + 0.7778, + 0.399, + 0.748, + 0.0122, + 0.4092, + 0.1421, + 0.7151, + 0.8102, + 0.01, + 0.1703, + 0.2805, + 0.8106, + 0.7516, + 0.6765, + 0.2037, + 0.8506, + 0.1033, + 0.3271, + 0.4215, + 0.4965, + 0.2543, + 0.906, + 0.5069, + 0.1515, + 0.7115, + 0.4195, + 0.1581, + 0.2944, + 0.0242, + 0.9459, + 0.8206, + 0.099, + 0.6988, + 0.7371, + 0.4004, + 0.1745, + 0.4, + 0.6512, + 0.0488, + 0.3628, + 0.739, + 0.6491, + 0.4864, + 0.8366, + 0.3133, + 0.6279, + 0.1321, + 0.1321, + 0.0816, + 0.6954, + 0.5545, + 0.1685, + 0.954, + 0.3377, + 0.373, + 0.2376, + 0.3244, + 0.7883, + 0.5532, + 0.1474, + 0.3158, + 0.4183, + 0.7936, + 0.5872, + 0.8807, + 0.8188, + 0.2297, + 0.6215, + 0.2339, + 0.5292, + 0.6262, + 0.5101, + 0.0743, + 0.3169, + 0.9478, + 0.1527, + 0.038, + 0.3641, + 0.0798, + 0.7928, + 0.6814, + 0.6577, + 0.4506, + 0.3297, + 0.1697, + 0.8551, + 0.2571, + 0.2472, + 0.2663, + 0.8441, + 0.7364, + 0.9617, + 0.4207, + 0.6166, + 0.1991, + 0.7126, + 0.3338, + 0.926, + 0.6528, + 0.4651, + 0.9094, + 0.971, + 0.6623, + 0.0636, + 0.0049, + 0.6905, + 0.2759, + 0.8071, + 0.6397, + 0.6604, + 0.4357, + 0.9817, + 0.5663, + 0.0703, + 0.2093, + 0.4125, + 0.7502, + 0.93, + 0.6166, + 0.7931, + 0.9685, + 0.7222, + 0.9809, + 0.7674, + 0.6546, + 0.3844, + 0.1089, + 0.271, + 0.1407, + 0.5814, + 0.4986, + 0.5013, + 0.0804, + 0.6318, + 0.557, + 0.0305, + 0.6887, + 0.0813, + 0.945, + 0.1916, + 0.3642, + 0.2253, + 0.9929, + 0.1651, + 0.0168, + 0.653, + 0.1687, + 0.5478, + 0.4012, + 0.8645, + 0.2789, + 0.2482, + 0.8785, + 0.1952, + 0.0656, + 0.974, + 0.3456, + 0.6583, + 0.7801, + 0.244, + 0.1788, + 0.3152, + 0.5577, + 0.971, + 0.8978, + 0.6442, + 0.2035, + 0.3427, + 0.0438, + 0.9738, + 0.2331, + 0.1719, + 0.275, + 0.1365, + 0.2952, + 0.9845, + 0.4752, + 0.3072, + 0.1588, + 0.9104, + 0.8157, + 0.7371, + 0.5408, + 0.1228, + 0.8979, + 0.7257, + 0.4397, + 0.5209, + 0.5325, + 0.7445, + 0.7861, + 0.0501, + 0.6133, + 0.9143, + 0.2003, + 0.0342, + 0.3678, + 0.8156, + 0.9686, + 0.4696, + 0.2236, + 0.5111, + 0.2187, + 0.3007, + 0.0463, + 0.9975, + 0.5434, + 0.3751, + 0.0252, + 0.8032, + 0.0555, + 0.7852, + 0.5118, + 0.4362, + 0.9737, + 0.776, + 0.5249, + 0.529, + 0.9953, + 0.5295, 0.291, - 0.6384, - 0.5177, - 0.3806, - 0.6286, - 0.0228, - 0.735, - 0.6595, - 0.4742, - 0.6094, - 0.6202, - 0.5923, - 0.1694, - 0.6518, - 0.9332, - 0.2021, - 0.4478, - 0.1485, - 0.3256, - 0.4219, - 0.4901, - 0.1899, - 0.8613, - 0.5728, - 0.5486, - 0.7859, - 0.5636, - 0.4091, - 0.2947, - 0.7291, - 0.9139, - 0.9003, - 0.2765, - 0.3856, - 0.7366, - 0.2683, - 0.3215, - 0.7176, - 0.3566, - 0.0952, - 0.0177, - 0.8148, - 0.1823, - 0.0056, - 0.3465, - 0.5871, - 0.4756, - 0.8915, - 0.606, - 0.2436, - 0.1615, - 0.8236, - 0.3768, - 0.7818, - 0.5528, - 0.3705, - 0.5875, - 0.8639, - 0.0171, - 0.2107, - 0.8295, - 0.7349, - 0.5176, - 0.8286, - 0.1465, - 0.9396, - 0.7506, - 0.3651, - 0.6298, - 0.0927, - 0.4543, - 0.9623, - 0.2633, - 0.3053, - 0.6374, - 0.8723, - 0.4021, - 0.8309, - 0.612, - 0.7828, - 0.7167, - 0.1197, - 0.292, - 0.4814, - 0.8147, - 0.7032, - 0.2866, - 0.7555, - 0.2847, - 0.6258, - 0.15, - 0.0843, - 0.6494, - 0.0092, - 0.7619, - 0.715, - 0.7146, - 0.2683, - 0.5011, - 0.1341, - 0.7096, - 0.7057, - 0.252, - 0.435, - 0.4743, - 0.2201, - 0.0531, - 0.2431, - 0.2919, - 0.8795, - 0.7981, - 0.6786, - 0.8287, - 0.5837, - 0.6851, - 0.5519, - 0.6449, - 0.2871, - 0.7362, - 0.9127, - 0.9497, - 0.9471, - 0.2016, - 0.0922, - 0.9262, - 0.0125, - 0.8669, - 0.2402, - 0.5417, - 0.7145, - 0.7045, - 0.4118, - 0.2104, - 0.1563, - 0.3087, - 0.0317, - 0.9691, + 0.874, + 0.7857, + 0.7396, + 0.8081, + 0.4978, + 0.7729, + 0.1501, + 0.7253, + 0.2798, 0.4158, - 0.0828, - 0.9618, - 0.0685, - 0.4087, - 0.444, - 0.3174, - 0.0602, - 0.54, - 0.6062, - 0.2462, - 0.8799, - 0.4743, - 0.7392, - 0.4994, - 0.3864, - 0.9626, - 0.5456, - 0.9753, - 0.3228, - 0.707, + 0.8006, + 0.1702, + 0.2247, + 0.4388, + 0.1993, + 0.6038, + 0.303, 0.7179, - 0.9568, - 0.8697, - 0.2587, - 0.0956, - 0.1614, - 0.1952, - 0.8847, - 0.8501, - 0.1498, - 0.1564, - 0.1854, - 0.3687, - 0.8283, - 0.3779, + 0.6104, + 0.8118, + 0.0386, + 0.9001, + 0.4289, + 0.7897, + 0.4594, + 0.6274, + 0.0201, + 0.0793, + 0.9923, + 0.732, + 0.0275, + 0.2691, + 0.5537, + 0.8546, + 0.8886, + 0.1689, + 0.2599, + 0.1558, + 0.4569, + 0.7733, + 0.563, + 0.6771, + 0.3076, + 0.6774, + 0.8236, + 0.1516, + 0.7105, + 0.3878, + 0.7445, + 0.6131, + 0.9393, + 0.3653, + 0.8016, + 0.0365, + 0.2954, + 0.3509, + 0.9525, + 0.0453, + 0.9965, + 0.6229, + 0.5924, + 0.5271, + 0.8744, + 0.1784, + 0.2439, + 0.0525, + 0.0322, + 0.8326, + 0.362, + 0.3801, + 0.4485, + 0.9238, + 0.1012, + 0.3174, + 0.6583, + 0.2852, + 0.1823, + 0.2077, + 0.9631, + 0.1633, + 0.7, + 0.3616, + 0.0007, + 0.0343, + 0.7002, + 0.8584, + 0.4336, + 0.1185, + 0.9228, + 0.8514, + 0.039, + 0.605, + 0.9329, + 0.2958, + 0.0575, + 0.5949, + 0.6801, + 0.193, + 0.8968, + 0.793, + 0.0424, + 0.8542, + 0.178, + 0.1492, + 0.0929, + 0.0267, + 0.5748, + 0.5189, + 0.5582, + 0.7238, 0.7314, - 0.2323, - 0.5118, - 0.7435, - 0.0612, - 0.8516, - 0.3576, - 0.4639, - 0.6143, - 0.5181, - 0.2582, - 0.1145, - 0.6069, - 0.9926, - 0.4766, - 0.7344, - 0.089, - 0.7367, - 0.8218, - 0.1169, + 0.7223, + 0.5159, + 0.1799, + 0.6664, + 0.1286, + 0.3994, + 0.9518, + 0.3378, + 0.4351, + 0.7026, + 0.1997, + 0.0026, + 0.4053, + 0.7211, + 0.9187, + 0.0477, + 0.4551, + 0.2166, + 0.4741, + 0.8352, + 0.7556, + 0.3545, + 0.6666, + 0.8454, + 0.2434, + 0.4352, + 0.4607, + 0.0132, + 0.4107, + 0.0991, + 0.4469, + 0.0004, + 0.2225, + 0.9685, + 0.7292, + 0.4464, + 0.8159, + 0.8768, + 0.8468, + 0.3097, + 0.3829, + 0.0683, + 0.5517, + 0.9804, + 0.3835, + 0.078, + 0.8158, + 0.0272, + 0.4592, + 0.6164, + 0.0556, + 0.8672, + 0.2204, + 0.7742, + 0.661, + 0.4503, + 0.6611, + 0.9714, + 0.8476, + 0.9284, + 0.1183, + 0.125, + 0.5843, + 0.412, + 0.3961, + 0.7931, + 0.2559, + 0.7154, + 0.5579, + 0.7957, + 0.89, + 0.7631, + 0.3732, + 0.2829, + 0.5025, + 0.14, + 0.0979, + 0.4645, + 0.473, + 0.7222, + 0.9293, + 0.8716, + 0.1465, + 0.1407, + 0.2157, + 0.3572, + 0.2919, + 0.1837, + 0.1687, + 0.26, + 0.0304, + 0.7321, + 0.5085, + 0.3842, + 0.8418, + 0.956, + 0.5152, + 0.5057, + 0.6132, + 0.4335, + 0.5058, + 0.2841, + 0.482, + 0.265, + 0.9305, + 0.5885, + 0.2241, + 0.607, + 0.281, + 0.6042, + 0.3127, + 0.574, + 0.35, + 0.3889, + 0.538, + 0.6054, + 0.1659, + 0.4134, + 0.6187, + 0.9887, + 0.6817, + 0.3745, + 0.2033, + 0.1848, + 0.0531, + 0.72, + 0.698, + 0.2722, + 0.2212, + 0.7093, + 0.4037, + 0.7556, + 0.8513, + 0.3899, + 0.0749, + 0.505, + 0.0584, + 0.7297, + 0.1112, + 0.7719, + 0.0239, + 0.9297, + 0.0406, + 0.9453, + 0.3986, + 0.283, + 0.6755, + 0.7574, + 0.365, + 0.3893, + 0.4845, + 0.1322, + 0.7552, + 0.9667, + 0.0798, + 0.6051, + 0.2484, + 0.9858, + 0.1787, + 0.0648, + 0.9593, + 0.6693, + 0.59, + 0.2144, + 0.0101, + 0.0269, + 0.73, + 0.3452, + 0.7964, + 0.1939, + 0.9093, + 0.3322, + 0.7985, + 0.7468, + 0.3744, + 0.6859, + 0.1325, + 0.3004, + 0.8649, + 0.0924, + 0.1944, + 0.5474, + 0.0106, + 0.7518, + 0.8868, + 0.6214, + 0.0504, + 0.3407, + 0.3788, + 0.1288, + 0.8279, + 0.1454, + 0.0421, + 0.5748, + 0.674, + 0.7357, + 0.3315, + 0.5529, + 0.1401, + 0.1906, + 0.1128, + 0.0003, + 0.978, + 0.2745, 0.6601, - 0.0265, - 0.8607, - 0.0605, - 0.8135, - 0.1476, - 0.0657, - 0.3844, - 0.073, - 0.2624, - 0.2275, - 0.4478, - 0.9794, - 0.1893, - 0.9545, - 0.403, - 0.4188, - 0.0324, - 0.5014, - 0.2429, - 0.788, - 0.0697, - 0.9162, - 0.6034, - 0.7106, - 0.1531, - 0.6503, - 0.3257, - 0.61, - 0.2038, - 0.9039, - 0.7102, - 0.447, - 0.8332, - 0.4591, - 0.8074, - 0.1857, - 0.6003, - 0.3074, - 0.682, - 0.7701, - 0.937, - 0.3184, - 0.6557, - 0.5689, - 0.4221, - 0.7081, - 0.8134, - 0.2185, 0.3269, - 0.81, - 0.4137, - 0.8626, - 0.155, - 0.338, - 0.2678, - 0.578, - 0.604, - 0.7511, - 0.073, - 0.4119, - 0.0803, - 0.6962, - 0.1508, - 0.3235, - 0.3006, - 0.327, - 0.9197, - 0.3944, - 0.696, - 0.1496, - 0.5594, - 0.309, - 0.2339, - 0.4285, - 0.973, - 0.7935, - 0.7934, - 0.0091, - 0.8268, - 0.6436, - 0.2846, - 0.6871, - 0.1046, - 0.0289, - 0.8862, - 0.7419, - 0.3478, - 0.492, - 0.2719, - 0.2797, - 0.3374, - 0.5647, - 0.6752, - 0.6231, - 0.1121, - 0.7152, - 0.596, - 0.7356, - 0.8333, - 0.1979, - 0.4004, - 0.5765, - 0.5209, - 0.464, - 0.1098, - 0.0153, - 0.0161, - 0.8207, - 0.1016, - 0.1442, - 0.0529, - 0.1025, - 0.6528, - 0.3962, - 0.3112, - 0.7165, - 0.5684, - 0.1778, - 0.0242, - 0.9471, - 0.009, - 0.6032, - 0.4078, - 0.5402, - 0.8198, - 0.4035, - 0.0646, - 0.6259, - 0.2123, - 0.9362, - 0.2987, - 0.8894, - 0.1029, - 0.2719, - 0.8178, - 0.9432, - 0.8663, - 0.601, - 0.4605, - 0.2479, - 0.038, - 0.442, - 0.2998, - 0.4499, + 0.8685, + 0.4562, + 0.3926, + 0.6127, + 0.5409, 0.3451, - 0.705, - 0.6516, - 0.0924, - 0.857, - 0.901, - 0.0077, - 0.3679, - 0.2861, - 0.3811, - 0.1092, - 0.5858, - 0.6969, - 0.1667, - 0.212, - 0.2908, - 0.2955, - 0.6368, - 0.5681, - 0.2016, - 0.3783, - 0.7105, - 0.1515, - 0.376, - 0.0878, - 0.038, - 0.3317, - 0.6972, - 0.092, - 0.0648, - 0.3134, - 0.7001, - 0.7654, - 0.579, - 0.7584, - 0.0194, - 0.2599, - 0.1652, - 0.2322, - 0.0844, - 0.6227, - 0.0592, - 0.1729, - 0.6196, - 0.5967, - 0.7007, - 0.477, - 0.3991, - 0.6214, - 0.0271, - 0.4889, - 0.511, - 0.3297, - 0.7377, - 0.2938, - 0.4151, - 0.8906, - 0.3159, - 0.0397, - 0.4971, - 0.3443, - 0.9234, - 0.0743, - 0.2254, - 0.7371, - 0.3831, - 0.9083, - 0.1383, - 0.0291, - 0.5323, - 0.9928, - 0.2169, - 0.9496, - 0.035, - 0.8571, - 0.807, - 0.5936, - 0.8208, - 0.7178, - 0.744, - 0.0977, - 0.3035, + 0.9034, + 0.3194, + 0.6512, + 0.1891, + 0.013, + 0.1991, + 0.8026, + 0.2132, + 0.286, + 0.6054, + 0.7205, + 0.005, + 0.0371, + 0.8038, + 0.1053, + 0.9829, + 0.0377, + 0.8684, + 0.8214, + 0.9707, + 0.6054, + 0.6279, + 0.3741, + 0.7333, + 0.714, + 0.3707, + 0.0771, + 0.9412, + 0.2826, + 0.4528, + 0.029, + 0.0192, + 0.9093, + 0.3985, + 0.0386, + 0.8499, + 0.0165, + 0.1751, + 0.1719, + 0.2508, + 0.4883, + 0.2329, + 0.1868, + 0.2548, + 0.6419, + 0.7761, + 0.7175, + 0.8644, + 0.5711, + 0.9824, + 0.9909, + 0.4662, + 0.2012, + 0.3602, + 0.6053, + 0.3718, + 0.6201, + 0.7684, + 0.0559, + 0.9518, + 0.4998, + 0.8988, + 0.3926, + 0.0202, + 0.8977, + 0.0678, + 0.707, + 0.462, + 0.5281, + 0.1185, + 0.1885, + 0.7076, + 0.3275, + 0.5813, + 0.5537, + 0.8797, + 0.7037, + 0.9748, 0.8849, - 0.188, - 0.5446, - 0.6923, - 0.1066, - 0.4059, - 0.8833, - 0.1024, - 0.5284, - 0.0455, - 0.5919, - 0.0064, - 0.2636, - 0.2392, - 0.7162, - 0.5375, - 0.6425, - 0.995, - 0.5153, - 0.0555, - 0.2198, - 0.1145, - 0.1112, - 0.7114, - 0.4945, - 0.359, - 0.5535, - 0.3421, - 0.348, + 0.3069, + 0.1035, + 0.5529, + 0.7047, + 0.1946, + 0.6147, + 0.7337, + 0.5348, + 0.6907, + 0.8864, + 0.3457, + 0.2814, + 0.2782, + 0.1331, + 0.6557, + 0.4799, + 0.6512, + 0.4719, + 0.2359, + 0.425, + 0.0617, + 0.2685, + 0.4155, + 0.4745, + 0.5325, + 0.4157, + 0.2188, + 0.1046, + 0.5327, + 0.1291, + 0.9834, + 0.0711, + 0.3203, + 0.8292, + 0.9927, + 0.8688, + 0.6869, + 0.7984, + 0.0278, + 0.5664, + 0.8256, + 0.074, + 0.5799, + 0.2404, + 0.2318, + 0.9252, + 0.9657, + 0.0617, + 0.1372, + 0.0155, + 0.9979, + 0.4472, + 0.8718, + 0.0933, + 0.833, + 0.924, + 0.615, + 0.0868, + 0.536, + 0.5253, + 0.7682, + 0.0302, + 0.7488, + 0.9095, + 0.5297, + 0.6258, + 0.3608, + 0.3539, + 0.457, + 0.991, + 0.6468, + 0.3564, + 0.7808, + 0.4894, + 0.0116, + 0.435, + 0.4575, + 0.6105, + 0.0668, + 0.8157, + 0.5712, + 0.3499, + 0.6004, + 0.1748, + 0.0923, + 0.3534, + 0.5436, + 0.2544, + 0.3556, 0.7399, - 0.1502, - 0.0955, - 0.9382, - 0.5149, - 0.7041, - 0.598, - 0.0501, - 0.306, - 0.3606, - 0.8143, - 0.1581, - 0.6631, - 0.4915, - 0.9283, - 0.6858, - 0.2277, - 0.2972, - 0.3938, - 0.8648, - 0.034, - 0.0454, - 0.4537, - 0.8831, - 0.6347, - 0.995, - 0.0546, - 0.8166, - 0.637, - 0.4541, - 0.2762, - 0.5602, - 0.5311, - 0.3289, - 0.7866, - 0.9139, - 0.4337, - 0.9466, - 0.7829, - 0.0402, - 0.1695, - 0.2289, - 0.1572, - 0.2144, - 0.6127, - 0.2355, - 0.8913, - 0.5113, - 0.8568, - 0.0391, - 0.0189, - 0.4811, - 0.0064, - 0.4163, - 0.5293, - 0.9302, - 0.3325, - 0.7397, - 0.8293, - 0.1121, - 0.9048, - 0.9756, - 0.4931, - 0.7355, - 0.3258, - 0.7303, - 0.8442, - 0.7212, - 0.4699, + 0.3909, + 0.1122, + 0.5639, + 0.012, + 0.8997, + 0.624, + 0.9347, + 0.7556, + 0.7548, + 0.6051, + 0.662, + 0.9329, 0.7409, - 0.7911, - 0.1848, - 0.1795, - 0.5585, - 0.0875, - 0.0191, - 0.0511, - 0.6898, - 0.5165, - 0.2258, - 0.011, - 0.2268, - 0.939, - 0.7846, - 0.1299, - 0.9528, - 0.5433, - 0.7729, - 0.6478, - 0.4177, - 0.2414, - 0.3201, - 0.4547, - 0.7858, - 0.959, - 0.9396, - 0.4142, - 0.8227, - 0.7775, - 0.9764, - 0.7192, - 0.0655, - 0.2088, - 0.6792, - 0.7755, - 0.8511, - 0.1803, - 0.9266, - 0.6835, - 0.4875, - 0.11, - 0.7424, - 0.9715, - 0.8432, - 0.7901, - 0.8906, - 0.1671, - 0.874, - 0.0842, - 0.6031, - 0.9378, - 0.3544, - 0.8308, - 0.5953, - 0.3726, - 0.1026, - 0.7103, - 0.0654, - 0.4896, - 0.1257, - 0.6082, - 0.6323, - 0.847, - 0.4541, - 0.9436, - 0.394, - 0.4168, - 0.0811, - 0.5152, - 0.8761, - 0.3223, - 0.7155, - 0.4867, - 0.1067, - 0.3376, - 0.4336, - 0.6737, - 0.0522, - 0.1605, - 0.6236, - 0.1369, - 0.9839, - 0.3993, - 0.1004, - 0.2878, - 0.8646, - 0.7742, - 0.4674, - 0.1849, - 0.2153, - 0.3365, - 0.1854, - 0.8232, - 0.2233, - 0.1024, - 0.5143, - 0.1142, - 0.8001, - 0.3742, - 0.2041, - 0.7128, - 0.1682, - 0.4939, - 0.5107, - 0.8116, - 0.7604, - 0.4551, - 0.9876, - 0.9057, - 0.1801, - 0.7858, - 0.1326, - 0.7327, - 0.7317, - 0.3682, - 0.6592, - 0.5625, - 0.9467, - 0.0045, - 0.2902, - 0.68, - 0.6987, - 0.9923, - 0.1407, - 0.9493, - 0.1396, - 0.1598, - 0.371, - 0.781, - 0.4316, - 0.3057, - 0.756, - 0.5586, - 0.4839, - 0.4293, - 0.2006, - 0.1797, - 0.5924, - 0.6016, - 0.2899, - 0.4461, - 0.9288, - 0.9971, - 0.9168, - 0.4938, - 0.4793, - 0.5499, - 0.2184, - 0.7727, - 0.1029, - 0.8732, - 0.9231, - 0.4184, - 0.1804, - 0.9214, - 0.8178, - 0.2504, - 0.7218, - 0.0607, - 0.2827, - 0.848, - 0.7582, - 0.0196, - 0.076, - 0.7691, - 0.6274, - 0.5519, + 0.3382, + 0.623, 0.4186, - 0.0057, - 0.8409, - 0.2038, - 0.9485, - 0.8775, - 0.082, - 0.1564, - 0.4846, - 0.2311, - 0.6531, - 0.9365, - 0.3238, - 0.4872, - 0.4002, + 0.5034, + 0.8474, + 0.5531, + 0.3604, + 0.5741, + 0.3059, + 0.0108, + 0.1627, + 0.885, + 0.5568, + 0.4783, + 0.5308, + 0.9973, + 0.5446, + 0.3117, + 0.2006, + 0.1816, + 0.8182, + 0.9076, + 0.0093, + 0.1808, + 0.5943, + 0.2117, + 0.3199, + 0.0793, + 0.0626, + 0.2024, + 0.6605, + 0.7457, + 0.87, + 0.0997, + 0.767, + 0.6542, + 0.6758, + 0.347, + 0.2025, + 0.1449, + 0.0105, + 0.1687, + 0.9939, + 0.5943, + 0.4316, + 0.5693, + 0.526, + 0.5342, + 0.5229, + 0.8831, + 0.1506, + 0.0787, + 0.4581, + 0.2765, + 0.0292, + 0.2725, + 0.9294, + 0.7599, + 0.0948, + 0.9415, + 0.6624, + 0.3136, + 0.6963, + 0.5008, + 0.4702, + 0.5356, + 0.1986, + 0.899, + 0.0298, + 0.3146, + 0.1398, + 0.6612, + 0.7133, + 0.8054, + 0.9856, + 0.9899, + 0.2935, + 0.796, + 0.2385, + 0.957, + 0.2216, + 0.3288, + 0.5523, + 0.5847, + 0.2492, + 0.8454, + 0.5274, + 0.8598, + 0.0215, + 0.1439, + 0.8796, + 0.755, + 0.3885, + 0.0893, + 0.4612, + 0.5743, + 0.5269, + 0.3665, + 0.4364, + 0.4151, + 0.2104, + 0.6973, + 0.3947, + 0.4523, + 0.8895, + 0.5191, + 0.0475, + 0.8557, + 0.6959, + 0.418, + 0.7594, + 0.632, + 0.0626, + 0.2138, + 0.8967, + 0.7768, + 0.3302, + 0.4619, + 0.0314, + 0.6684, + 0.847, + 0.8341, + 0.8586, + 0.0671, + 0.2833, + 0.9583, + 0.328, + 0.2551, + 0.8735, + 0.4686, + 0.1484, + 0.5511, + 0.4134, + 0.721, + 0.0891, + 0.3352, + 0.8526, + 0.2561, + 0.7872, + 0.8488, + 0.8137, + 0.4346, + 0.9536, + 0.6141, + 0.7542, + 0.6898, + 0.3872, + 0.7, + 0.8582, + 0.4036, + 0.8498, + 0.5301, + 0.8523, + 0.4195, + 0.2061, + 0.3002, + 0.9031, + 0.8267, + 0.0242, + 0.6674, + 0.0664, + 0.086, + 0.985, + 0.0399, + 0.808, + 0.3902, + 0.9364, + 0.7224, + 0.3417, + 0.5207, + 0.9352, + 0.9446, + 0.283, + 0.2907, + 0.1183, + 0.6543, + 0.1382, + 0.7774, + 0.7046, + 0.545, + 0.7124, + 0.0744, + 0.8658, + 0.4404, + 0.1911, + 0.5258, + 0.5122, + 0.2219, + 0.086, + 0.8258, + 0.9087, + 0.631, + 0.1189, + 0.7736, + 0.8941, + 0.1522, + 0.0524, + 0.997, + 0.7206, + 0.6108, + 0.6463, + 0.0422, + 0.3568, + 0.7834, + 0.063, + 0.0404, + 0.0586, + 0.5955, + 0.3452, + 0.8404, + 0.9174, + 0.5481, + 0.665, + 0.7664, + 0.275, + 0.2068, + 0.1601, + 0.7156, + 0.198, + 0.4843, + 0.405, + 0.1926, + 0.5407, + 0.7862, + 0.494, + 0.5151, + 0.0314, + 0.4896, + 0.29, + 0.8834, + 0.2036, + 0.0068, + 0.1365, + 0.2373, + 0.8705, + 0.3611, + 0.2048, + 0.6285, + 0.4951, + 0.1054, + 0.7446, + 0.3904, + 0.2598, + 0.939, + 0.4432, + 0.6864, + 0.6661, + 0.2425, + 0.1968, + 0.6869, + 0.5112, + 0.1092, + 0.3577, + 0.4738, + 0.4078, + 0.0232, + 0.1724, + 0.8542, + 0.4442, + 0.6848, + 0.2019, + 0.4769, + 0.938, + 0.4275, + 0.0088, + 0.1861, + 0.2632, + 0.7704, + 0.5694, + 0.6121, + 0.7187, + 0.5467, + 0.7739, + 0.4816, + 0.2252, + 0.0277, + 0.1323, + 0.0833, + 0.3604, + 0.193, + 0.4207, + 0.7246, + 0.7008, + 0.9153, + 0.2994, + 0.3464, + 0.2872, + 0.3715, + 0.2217, + 0.5799, 0.8519, - 0.0085, - 0.3852, - 0.6469, - 0.2647, - 0.5496, - 0.5637, - 0.4262, - 0.45, - 0.9192, - 0.8922, - 0.6255, - 0.5777, - 0.2829, - 0.6514, - 0.3798, - 0.4877, - 0.7258, - 0.5321, - 0.1624, - 0.7329, - 0.1273, - 0.2315, - 0.1125, - 0.4653, - 0.878, - 0.7484, - 0.2189, - 0.9058, - 0.4802, - 0.8334, - 0.978, - 0.4242, - 0.0939, - 0.3782, - 0.4156, - 0.872, - 0.4775, - 0.4035, - 0.1014, - 0.5629, - 0.8562, - 0.7222, - 0.4305, - 0.064, - 0.9166, - 0.1673, - 0.7071, + 0.1735, + 0.2906, + 0.4734, + 0.9276, + 0.484, + 0.6226, + 0.401, + 0.2568, + 0.9832, + 0.0765, + 0.2474, + 0.5547, + 0.9968, + 0.5361, + 0.6557, + 0.4086, + 0.8354, + 0.5741, + 0.1248, + 0.0595, 0.9949, - 0.782, - 0.6767, - 0.1657, - 0.2038, - 0.1087, - 0.3166, - 0.7153, - 0.7668, - 0.317, - 0.0886, - 0.7494, - 0.75, - 0.7553, - 0.9027, - 0.9459, - 0.4183, - 0.5805, - 0.8073, - 0.4488, - 0.2915, - 0.7248, - 0.2, - 0.6751, - 0.7742, - 0.8867, - 0.453, - 0.8604, - 0.6151, - 0.2615, + 0.9675, 0.3532, - 0.426, - 0.1863, - 0.9267, - 0.1694, - 0.7445, - 0.36, - 0.8031, - 0.2449, - 0.824, - 0.7102, - 0.429, - 0.9435, - 0.715, - 0.6093, - 0.4057, - 0.534, - 0.7846, - 0.4028, - 0.0452, - 0.9552, - 0.0568, - 0.9068, - 0.0403, - 0.2596, - 0.4517, - 0.8645, - 0.1072, - 0.2015, - 0.0303, - 0.7563, - 0.0662, - 0.6554, - 0.363, - 0.0253, - 0.23, - 0.1682, - 0.8709, - 0.9654, - 0.3855, - 0.0092, - 0.0579, + 0.1624, + 0.4502, + 0.6141, + 0.8884, + 0.0261, + 0.7025, + 0.0295, 0.7554, - 0.3952, - 0.3329, - 0.2484, - 0.075, - 0.2561, - 0.6605, - 0.531, - 0.1594, - 0.3272, - 0.0607, - 0.8776, - 0.7096, - 0.776, - 0.4641, - 0.5851, - 0.5055, - 0.0692, - 0.9962, - 0.8565, - 0.3245, - 0.4622, - 0.7682, - 0.0864, - 0.1479, - 0.7441, - 0.6467, - 0.449, - 0.6474, - 0.4072, - 0.3476, - 0.5376, - 0.5851, - 0.8227, - 0.0107, - 0.705, - 0.1947, - 0.5031, - 0.675, - 0.5185, - 0.7522, - 0.5834, - 0.3236, - 0.9569, - 0.9673, - 0.4974, - 0.4164, - 0.9084, - 0.2113, - 0.5438, - 0.8222, - 0.3916, - 0.4692, - 0.9134, - 0.9077, - 0.2809, - 0.5758, - 0.2367, - 0.7377, - 0.2297, - 0.922, - 0.436, - 0.483, - 0.415, - 0.9466, - 0.271, - 0.9475, - 0.3196, - 0.2011, - 0.3791, - 0.4463, - 0.0218, - 0.8622, - 0.3914, - 0.1882, - 0.7644, - 0.7666, - 0.4199, - 0.3447, - 0.9453, - 0.1024, - 0.9798, - 0.9958, - 0.3198, - 0.8894, - 0.5278, - 0.3973, - 0.3165, - 0.8577, - 0.9692, - 0.7896, - 0.1921, - 0.5746, - 0.0128, - 0.0796, - 0.9372, - 0.3695, - 0.8592, - 0.0088, - 0.8214, - 0.3754, - 0.3367, - 0.6634, - 0.4421, - 0.0221, - 0.0643, - 0.8032, - 0.6248, - 0.1578, - 0.6299, - 0.4347, - 0.4869, - 0.8931, - 0.7274, - 0.619, - 0.0522, - 0.4237, - 0.7948, - 0.7407, - 0.4375, - 0.5634, - 0.3383, - 0.1503, - 0.3649, - 0.7348, - 0.8464, - 0.7928, - 0.0137, - 0.7438, - 0.4379, - 0.3035, - 0.774, - 0.3415, - 0.8042, - 0.0614, - 0.0272, - 0.6883, - 0.3907, - 0.1322, - 0.4429, - 0.2462, - 0.2302, - 0.5371, - 0.2239, - 0.9305, - 0.5292, - 0.5403, - 0.0322, - 0.0607, - 0.4233, - 0.7525, - 0.7944, - 0.6088, - 0.1783, - 0.5509, - 0.2464, - 0.8221, - 0.7788, - 0.3753, - 0.52, - 0.7989, - 0.5247, - 0.241, - 0.5674, - 0.0264, - 0.8062, - 0.9197, - 0.2241, - 0.9432, - 0.4047, - 0.9231, - 0.3493, - 0.4422, - 0.4642, - 0.3819, - 0.9918, - 0.7921, - 0.7686, - 0.0076, - 0.0492, - 0.2877, - 0.6724, - 0.0842, - 0.6558, - 0.6324, - 0.5802, - 0.184, + 0.1941, + 0.8189, + 0.883, + 0.0532, + 0.2859, + 0.9559, + 0.3832, + 0.7396, + 0.4304, + 0.4557, + 0.5046, + 0.6374, + 0.7939, + 0.4511, + 0.4877, + 0.9571, + 0.8494, + 0.6571, + 0.2985, + 0.1989, + 0.6123, + 0.7063, + 0.9309, + 0.8235, + 0.0112, + 0.0507, + 0.512, + 0.6513, + 0.3017, + 0.9596, + 0.9655, + 0.9531, + 0.7634, + 0.406, + 0.7118, + 0.0901, + 0.5505, + 0.4152, + 0.0168, + 0.2216, + 0.2907, + 0.1454, + 0.9737, + 0.739, + 0.4115, + 0.5181, + 0.7926, + 0.9542, + 0.0711, + 0.1769, + 0.0153, + 0.5293, + 0.9127, + 0.4492, + 0.5566, + 0.7852, + 0.5827, + 0.2397, + 0.2604, + 0.7769, 0.6264, - 0.428, - 0.9892, - 0.0451, - 0.8916, - 0.0138, - 0.2442, - 0.3718, - 0.5579, - 0.4466, - 0.3725, - 0.3543, - 0.2228, - 0.6971, - 0.009, - 0.5565, - 0.5791, - 0.2732, - 0.7486, - 0.9858, - 0.8667, - 0.9938, - 0.8736, - 0.8162, - 0.3885, - 0.4506, - 0.6962, - 0.874, - 0.7414, - 0.3387, - 0.8205, - 0.7892, - 0.8239, - 0.7731, - 0.2244, - 0.9433, - 0.4471, - 0.5645, - 0.7566, - 0.7554, - 0.7348, - 0.4422, - 0.8153, - 0.1543, - 0.1957, - 0.2414, - 0.7751, + 0.8021, + 0.3864, + 0.9485, + 0.3107, + 0.9268, + 0.1829, + 0.6433, + 0.7665, + 0.9326, + 0.2979, + 0.9541, + 0.3389, + 0.2929, + 0.8771, + 0.3713, + 0.8839, + 0.3013, + 0.3339, + 0.0563, + 0.4706, + 0.7033, + 0.9535, + 0.2131, + 0.1677, + 0.6794, + 0.6078, + 0.5403, + 0.7843, 0.119, - 0.2294, - 0.8319, - 0.8439, - 0.3842, - 0.514, - 0.9114, - 0.3063, - 0.9002, - 0.287, - 0.5086, - 0.9153, - 0.2263, - 0.5741, - 0.6072, - 0.6519, - 0.4394, - 0.1654, - 0.394, - 0.7986, - 0.1801, - 0.5327, - 0.7223, - 0.8283, - 0.7556, - 0.469, - 0.7724, - 0.1706, - 0.477, - 0.6747, - 0.0805, - 0.6284, - 0.5463, - 0.2508, - 0.9628, - 0.5442, - 0.6912, - 0.3628, - 0.1035, - 0.4773, - 0.2721, - 0.0142, - 0.9634, - 0.1212, - 0.1822, - 0.1425, - 0.3318, - 0.5457, - 0.5933, - 0.1165, - 0.0797, - 0.7429, - 0.509, - 0.0467, - 0.2688, - 0.2156, - 0.8892, - 0.468, - 0.9423, - 0.3559, - 0.728, - 0.1665, - 0.3561, - 0.5909, - 0.3008, - 0.4004, - 0.1246, - 0.3066, - 0.9472, - 0.0933, - 0.1525, - 0.3016, - 0.945, - 0.096, - 0.7738, - 0.3915, - 0.0646, - 0.8994, - 0.5638, - 0.687, - 0.9151, - 0.9187, - 0.7412, - 0.7059, - 0.951, - 0.104, - 0.9947, - 0.6402, - 0.8347, - 0.4022, - 0.69, - 0.1657, - 0.4685, - 0.6347, - 0.1035, - 0.5796, - 0.6764, - 0.0276, - 0.2327, - 0.1289, - 0.191, - 0.1062, - 0.5347, - 0.857, - 0.4646, - 0.575, - 0.8284, - 0.0923, - 0.7585, - 0.484, - 0.4439, - 0.8882, - 0.4807, - 0.31, - 0.0854, - 0.1119, - 0.3016, - 0.8899, - 0.5329, - 0.6365, - 0.9297, - 0.6557, - 0.5515, - 0.9999, - 0.4918, - 0.3679, - 0.6583, - 0.8618, - 0.1457, - 0.495, - 0.5753, - 0.2777, - 0.686, - 0.4764, - 0.5414, - 0.1358, - 0.8681, - 0.8701, - 0.3572, - 0.2886, - 0.5653, - 0.1061, - 0.5012, - 0.0189, - 0.037, - 0.6081, - 0.8302, - 0.2675, - 0.6746, - 0.9661, - 0.6629, - 0.5889, - 0.1423, - 0.4615, - 0.3245, - 0.553, - 0.2821, - 0.0236, - 0.4979, - 0.6657, - 0.921, - 0.6531, - 0.7322, - 0.4855, - 0.7152, - 0.963, - 0.3683, - 0.1342, - 0.4209, - 0.9563, - 0.4044, - 0.0083, - 0.4179, - 0.2679, - 0.3347, - 0.8516, - 0.4116, - 0.1664, - 0.4073, - 0.0817, - 0.1408, - 0.167, - 0.1335, - 0.8168, - 0.0698, - 0.6117, - 0.6339, - 0.6688, - 0.8478, - 0.0011, - 0.378, - 0.1374, - 0.7199, - 0.2658, - 0.7116, - 0.3591, - 0.3053, - 0.0906, - 0.064, - 0.5779, - 0.4166, - 0.9041, - 0.6534, - 0.9109, - 0.1697, - 0.798, - 0.8569, - 0.1573, - 0.4891, - 0.0375, - 0.5076, - 0.2826, - 0.2132, - 0.269, - 0.0852, - 0.7262, - 0.2672, - 0.1199, - 0.8051, - 0.9131, - 0.9511, - 0.6476, - 0.696, - 0.8512, - 0.0318, - 0.9653, - 0.4285, - 0.2793, - 0.8851, - 0.885, - 0.2328, - 0.6079, - 0.5645, - 0.446, - 0.8603, - 0.3949, - 0.8253, - 0.3871, - 0.643, - 0.9284, - 0.4744, - 0.7426, - 0.1698, - 0.4992, - 0.9671, - 0.9244, - 0.5439, - 0.3874, - 0.5179, - 0.6498, - 0.3332, - 0.4223, - 0.8615, - 0.8386, - 0.5217, - 0.8151, - 0.6514, - 0.0119, - 0.8915, - 0.0732, - 0.2621, - 0.7115, - 0.3758, - 0.221, - 0.3302, - 0.5254, - 0.2457, - 0.3324, - 0.4186, - 0.2128, - 0.949, - 0.8744, - 0.0105, - 0.8989, - 0.8113, - 0.4675, - 0.4947, - 0.0488, - 0.2807, - 0.7737, - 0.1808, - 0.6694, - 0.1598, - 0.6013, - 0.6154, - 0.4895, - 0.4016, - 0.9295, - 0.155, - 0.9424, - 0.2285, - 0.8534, - 0.6408, - 0.8109, - 0.9535, - 0.4261, - 0.2261, - 0.5264, - 0.4075, - 0.1998, - 0.7661, - 0.5689, - 0.7641, - 0.2558, - 0.0109, - 0.0009, - 0.6808, - 0.2511, - 0.6939, - 0.268, - 0.5873, - 0.5685, - 0.3247, - 0.2646, - 0.3197, - 0.9667, - 0.0928, - 0.3005, - 0.4052, - 0.7788, - 0.6997, - 0.2926, - 0.1887, - 0.9592, - 0.8672, - 0.7206, - 0.0132, - 0.7899, - 0.4841, - 0.6604, - 0.1569, - 0.3907, - 0.6087, - 0.3355, - 0.5105, - 0.811, - 0.8321, - 0.6485, - 0.0169, - 0.437, - 0.9348, - 0.4441, - 0.3829, - 0.2955, - 0.0678, - 0.017, - 0.2447, - 0.3847, - 0.6219, - 0.0525, - 0.9623, - 0.5066, - 0.8894, - 0.1173, - 0.4818, - 0.9403, - 0.4159, - 0.9743, + 0.7781, + 0.2304, + 0.5494, + 0.5512, + 0.3878, + 0.5464, + 0.7876, + 0.2846, + 0.7873, + 0.895, + 0.5156, + 0.8501, + 0.8726, + 0.8926, + 0.5818, + 0.3862, + 0.7903, + 0.4805, + 0.0953, + 0.6237, + 0.8607, 0.2416, - 0.9719, - 0.6637, - 0.274, - 0.8242, - 0.7968, - 0.2567, + 0.3229, + 0.8781, + 0.1837, + 0.1468, + 0.8602, + 0.2883, + 0.0936, + 0.5573, + 0.3521, + 0.3029, + 0.0914, + 0.4259, + 0.9273, + 0.7775, + 0.4982, + 0.0085, + 0.5106, + 0.6623, + 0.9293, + 0.5776, + 0.8967, + 0.0691, + 0.0092, + 0.0577, + 0.6841, + 0.9112, + 0.3052, + 0.5627, + 0.8591, + 0.8311, + 0.6617, + 0.4197, + 0.6949, + 0.7835, + 0.3823, + 0.9183, + 0.2389, + 0.4021, + 0.5704, + 0.0961, + 0.2698, + 0.7356, + 0.4459, + 0.1167, + 0.1308, + 0.6754, + 0.0813, + 0.1824, + 0.788, + 0.4955, + 0.3847, + 0.6524, + 0.6193, + 0.7594, + 0.033, + 0.6869, + 0.4211, + 0.1466, + 0.0961, + 0.5702, + 0.6765, + 0.8259, + 0.3511, + 0.9313, + 0.4756, + 0.9213, + 0.5256, + 0.9111, + 0.5802, + 0.0848, + 0.7083, + 0.1705, + 0.4463, + 0.5357, + 0.1497, + 0.7343, + 0.464, + 0.497, + 0.0499, + 0.6086, + 0.1737, + 0.2129, + 0.8146, + 0.4201, + 0.8085, + 0.9101, + 0.9039, + 0.5069, + 0.312, + 0.6505, + 0.6749, + 0.6119, + 0.4957, + 0.3753, + 0.3812, + 0.3985, + 0.3634, + 0.8089, + 0.6311, 0.2522, - 0.9316, - 0.7847, - 0.6135, - 0.6317, - 0.084, - 0.0173, - 0.4489, - 0.6495, - 0.7512, - 0.7555, - 0.4519, - 0.5656, - 0.1796, - 0.7849, - 0.1795, - 0.0514, - 0.4191, - 0.9689, - 0.8218, - 0.0086, - 0.1624, - 0.548, - 0.828, - 0.871, - 0.4877, - 0.0161, - 0.1096, - 0.5653, - 0.4618, - 0.2199, - 0.926, - 0.0692, - 0.8792, - 0.0614, - 0.9295, - 0.7867, - 0.7945, - 0.8477, - 0.6748, - 0.1779, - 0.5433, - 0.6893, - 0.0075, - 0.8125, - 0.379, - 0.5756, - 0.2846, - 0.5688, - 0.7232, - 0.8046, - 0.8421, - 0.7297, - 0.6444, - 0.4187, - 0.8015, - 0.4222, - 0.1091, - 0.4378, - 0.9292, - 0.2994, - 0.3305, - 0.3136, - 0.5677, - 0.1625, - 0.3886, - 0.4664, - 0.3523, + 0.6782, + 0.5725, + 0.2848, + 0.3531, + 0.6651, + 0.8561, + 0.6613, + 0.6892, + 0.5879, + 0.384, + 0.7022, + 0.4927, + 0.1471, 0.9365, - 0.3922, - 0.1355, - 0.9846, - 0.2654, - 0.1092, - 0.0968, - 0.3584, - 0.2161, - 0.1722, - 0.7911, - 0.6901, - 0.5914, - 0.6144, - 0.3012, - 0.3803, - 0.0056, - 0.1596, - 0.9439, - 0.7697, - 0.5528, - 0.4273, - 0.4696, - 0.0109, - 0.0638, - 0.016, - 0.1962, - 0.2588, - 0.8825, - 0.4345, - 0.5303, - 0.4205, - 0.9254, - 0.0374, - 0.9145, - 0.4699, - 0.6137, - 0.155, - 0.9397, - 0.7137, - 0.0253, - 0.0389, - 0.3587, - 0.8711, - 0.0044, - 0.27, - 0.0741, - 0.9725, - 0.9809, - 0.75, - 0.9842, - 0.9133, - 0.6755, - 0.6607, - 0.8964, - 0.1436, - 0.4375, - 0.2997, - 0.2015, - 0.0935, - 0.2161, - 0.5353, - 0.8575, - 0.0072, - 0.126, - 0.6987, - 0.5573, - 0.1886, - 0.6908, - 0.7263, - 0.5583, - 0.1685, - 0.471, - 0.6574, - 0.3136, - 0.9861, - 0.9963, - 0.9231, - 0.5758, - 0.56, - 0.88, - 0.7948, - 0.2115, - 0.66, - 0.5924, - 0.0707, - 0.3292, - 0.3164, - 0.8911, - 0.8904, - 0.043, - 0.7084, - 0.5827, - 0.8232, - 0.7003, - 0.0474, - 0.6319, - 0.7303, - 0.4965, - 0.6511, - 0.895, - 0.1024, - 0.8941, - 0.0611, - 0.8183, - 0.4559, - 0.3919, - 0.8924, - 0.2404, - 0.4257, - 0.3455, - 0.9739, - 0.8373, - 0.7639, - 0.8571, - 0.813, - 0.3597, - 0.1933, - 0.7027, - 0.4236, - 0.1925, - 0.4344, - 0.7125, - 0.9812, - 0.8603, - 0.7888, - 0.562, - 0.0895, - 0.5651, - 0.2757, - 0.1687, - 0.5297, - 0.1556, - 0.8419, - 0.1208, - 0.1893, - 0.4217, - 0.9509, - 0.919, - 0.836, - 0.6019, - 0.8727, - 0.0325, - 0.5557, - 0.6074, - 0.7683, - 0.0497, - 0.4873, - 0.659, - 0.3494, - 0.5959, - 0.9033, - 0.7739, - 0.5278, - 0.0406, - 0.9623, - 0.1733, - 0.0605, - 0.2002, - 0.7076, - 0.9675, - 0.3688, - 0.7149, - 0.7897, - 0.47, - 0.5521, - 0.3327, - 0.3852, - 0.6732, + 0.4727, + 0.2647, + 0.1416, + 0.6234, + 0.5787, + 0.323, + 0.9077, + 0.5267, + 0.5302, + 0.7731, + 0.6722, + 0.24, + 0.4316, + 0.476, + 0.827, + 0.2659, + 0.4766, + 0.356, 0.6047, - 0.2862, - 0.1253, - 0.2751, - 0.1313, - 0.7124, - 0.2102, - 0.6966, - 0.8505, - 0.2625, - 0.7832, - 0.0374, - 0.0486, - 0.7818, - 0.1376, - 0.9628, - 0.9201, - 0.1377, - 0.3848, - 0.0049, - 0.1817, - 0.2155, - 0.8045, - 0.4772, - 0.9014, - 0.7811, - 0.7295, - 0.2938, - 0.5211, - 0.4627, - 0.7263, - 0.4548, - 0.8767, - 0.4191, - 0.6499, - 0.9601, - 0.0846, - 0.7453, - 0.1186, - 0.0486, - 0.2422, - 0.1127, - 0.2832, - 0.1276, - 0.5553, - 0.8545, - 0.8718, - 0.2859, - 0.4649, - 0.9811, - 0.8396, - 0.3289, - 0.6637, - 0.1952, - 0.65, - 0.0176, - 0.6911, - 0.8143, - 0.0655, - 0.6959, - 0.3389, - 0.2725, - 0.0749, - 0.1263, - 0.6419, - 0.5193, - 0.3518, - 0.1256, - 0.4244, - 0.3075, - 0.498, - 0.0117, - 0.9949, - 0.5125, - 0.8644, - 0.3452, - 0.4128, - 0.4191, - 0.7415, - 0.5778, - 0.4774, - 0.6856, - 0.6615, + 0.6569, + 0.4171, + 0.5615, + 0.2621, + 0.3002, + 0.1179, + 0.4834, + 0.8095, + 0.3706, + 0.1672, + 0.8198, + 0.5002, + 0.4822, + 0.5237, + 0.0383, + 0.3501, + 0.713, + 0.3989, + 0.3191, + 0.77, + 0.1294, + 0.6317, + 0.1881, + 0.8533, + 0.3754, + 0.178, 0.7651, - 0.4477, - 0.56, - 0.5403, - 0.9731, - 0.2818, - 0.1428, - 0.4593, - 0.0717, - 0.2544, - 0.9233, - 0.3863, - 0.8394, - 0.0318, - 0.3363, - 0.8234, - 0.835, - 0.2946, - 0.9314, - 0.4245, - 0.1141, - 0.4262, - 0.7137, - 0.0659, - 0.2187, - 0.1918, - 0.6415, - 0.7056, - 0.4847, - 0.0046, - 0.4239, - 0.0149, - 0.5424, - 0.2263, - 0.2593, - 0.1507, - 0.7948, - 0.6626, - 0.1766, - 0.3503, - 0.51, - 0.3167, - 0.4061, - 0.8368, - 0.1857, - 0.4056, - 0.7907, - 0.8368, - 0.596, - 0.7349, - 0.6258, - 0.9821, - 0.4182, - 0.3337, - 0.821, - 0.3392, - 0.4621, - 0.2458, - 0.1391, - 0.3905, - 0.2813, - 0.1608, - 0.9407, - 0.4694, - 0.3745, - 0.0057, - 0.3515, - 0.5673, - 0.1174, - 0.998, - 0.0773, - 0.1395, - 0.7766, - 0.263, - 0.3394, - 0.2116, - 0.4493, - 0.3982, - 0.8565, - 0.5808, - 0.4952, - 0.0012, - 0.2166, - 0.4461, - 0.0265, - 0.875, - 0.61, - 0.4368, - 0.6865, - 0.5283, - 0.0961, - 0.7612, - 0.0126, - 0.292, - 0.3123, - 0.1155, - 0.9297, - 0.2568, - 0.2656, - 0.4289, - 0.2585, - 0.0197, - 0.9971, - 0.2408, - 0.7256, - 0.1364, - 0.5991, - 0.5546, - 0.2374, - 0.8072, - 0.1087, - 0.0284, - 0.1911, - 0.646, - 0.6443, - 0.4968, - 0.0405, - 0.9121, - 0.5309, - 0.3609, - 0.5886, - 0.5767, - 0.2546, - 0.7653, - 0.4146, - 0.8628, - 0.7156, - 0.822, - 0.9989, - 0.8588, - 0.4651, - 0.8744, - 0.7185, - 0.5476, - 0.0249, - 0.6859, - 0.2256, - 0.0366, - 0.0331, - 0.8183, - 0.1013, - 0.3557, - 0.1019, - 0.1408, - 0.9643, - 0.801, - 0.3046, - 0.3156, - 0.1735, - 0.6758, - 0.9956, - 0.4209, - 0.9445, - 0.2846, - 0.4843, - 0.7588, - 0.2021, - 0.9543, - 0.4741, - 0.06, - 0.9405, - 0.8956, - 0.4697, - 0.7256, - 0.1214, - 0.909, - 0.3993, - 0.34, - 0.5639, - 0.8503, - 0.7708, - 0.5723, - 0.4961, - 0.2919, - 0.4704, - 0.8914, - 0.8353, - 0.9116, - 0.5126, - 0.4221, - 0.5974, - 0.658, - 0.8077, - 0.2, - 0.6039, - 0.9268, - 0.8401, - 0.4333, - 0.3708, - 0.4569, - 0.7858, - 0.3484, - 0.1191, - 0.9506, - 0.6743, + 0.6156, + 0.7179, + 0.703, + 0.7882, + 0.3778, + 0.8577, + 0.1082, + 0.3467, + 0.6465, + 0.132, + 0.0711, + 0.942, + 0.5655, + 0.1549, + 0.5429, + 0.5589, + 0.9477, + 0.9346, + 0.7736, + 0.7848, + 0.1162, + 0.8558, + 0.6696, + 0.0004, + 0.1796, + 0.3058, + 0.3536, + 0.2566, + 0.7573, + 0.8103, + 0.8895, + 0.5937, + 0.5328, + 0.3218, + 0.1037, + 0.2584, + 0.4301, 0.6651, - 0.3691, - 0.9938, - 0.685, - 0.4249, - 0.6258, - 0.2579, - 0.5083, - 0.0899, - 0.3008, - 0.7576, - 0.0144, - 0.6859, - 0.1428, - 0.2891, - 0.3572, - 0.9402, - 0.5131, - 0.3968, - 0.8767, - 0.8574, - 0.6813, - 0.2045, - 0.6255, - 0.2749, - 0.0793, - 0.1912, - 0.9606, - 0.8459, - 0.5449, - 0.2029, - 0.2045, - 0.0206, - 0.135, - 0.5599, - 0.917, - 0.5123, - 0.9149, - 0.0549, - 0.3475, - 0.0944, - 0.1866, - 0.9539, - 0.3913, - 0.3843, - 0.76, - 0.0514, - 0.5551, - 0.4819, - 0.757, - 0.0605, - 0.2377, - 0.6272, - 0.8441, - 0.7364, - 0.4946, - 0.8432, - 0.8044, - 0.3691, - 0.658, - 0.586, - 0.2246, - 0.2813, - 0.1747, - 0.4679, - 0.4183, - 0.4665, - 0.4023, - 0.1164, - 0.3504, - 0.9552, - 0.1754, - 0.84, - 0.7441, - 0.4045, - 0.951, - 0.2567, - 0.4849, - 0.3581, - 0.8581, - 0.5504, - 0.5032, - 0.7904, - 0.6281, - 0.998, - 0.9971, - 0.4596, - 0.3783, - 0.4519, - 0.9989, - 0.5866, - 0.3304, - 0.4304, - 0.272, - 0.1823, - 0.2013, - 0.2142, - 0.7535, - 0.2994, - 0.0613, - 0.9795, - 0.6821, - 0.0456, - 0.0196, - 0.0699, - 0.6406, - 0.7632, - 0.1835, - 0.9291, - 0.5286, - 0.7538, - 0.6633, - 0.8888, - 0.1922, - 0.5577, - 0.3249, - 0.6424, - 0.5138, - 0.0214, - 0.2078, - 0.5909, - 0.8302, - 0.8597, - 0.8069, - 0.0829, - 0.2508, - 0.8773, - 0.8621, - 0.9992, - 0.2662, - 0.4869, - 0.0963, - 0.0491, - 0.4677, - 0.0639, - 0.7722, - 0.2758, - 0.0032, - 0.1773, - 0.4032, - 0.1473, - 0.0585, - 0.5752, - 0.6264, - 0.2585, - 0.8841, - 0.6201, - 0.6677, - 0.6381, - 0.265, - 0.1352, - 0.3439, - 0.1305, - 0.3575, - 0.7018, - 0.8185, - 0.2708, - 0.6, - 0.9132, - 0.3221, - 0.7538, - 0.2598, - 0.8078, - 0.4213, - 0.3549, - 0.827, - 0.9299, - 0.1075, - 0.0224, - 0.3287, - 0.776, - 0.5769, - 0.1587, - 0.7817, - 0.8231, + 0.7649, + 0.9004, + 0.3839, + 0.7456, + 0.2578, + 0.611, + 0.9778, + 0.294, + 0.8869, + 0.4503, + 0.7005, + 0.4706, + 0.2845, + 0.4555, + 0.5544, + 0.7344, + 0.3654, + 0.3556, + 0.3017, + 0.6592, + 0.7553, + 0.0534, + 0.1356, + 0.4609, 0.9179, - 0.2751, - 0.3793, - 0.4686, - 0.1662, - 0.1777, - 0.432, - 0.1679, - 0.3812, - 0.9924, - 0.0693, - 0.3882, - 0.9917, - 0.4205, - 0.4455, - 0.9396, - 0.8168, - 0.5336, - 0.1938, - 0.4657, - 0.8241, - 0.3007, - 0.797, - 0.7479, - 0.4587, - 0.9214, - 0.5032, - 0.4585, - 0.3163, - 0.4607, - 0.6222, - 0.5469, - 0.6389, - 0.3574, - 0.0124, - 0.5631, - 0.8627, - 0.3439, - 0.3062, - 0.464, + 0.3417, + 0.2436, + 0.6386, + 0.1915, + 0.1677, + 0.0591, + 0.3595, + 0.2056, + 0.4041, + 0.0964, + 0.1358, + 0.1946, + 0.9638, + 0.1853, + 0.7333, + 0.8495, + 0.688, + 0.3816, + 0.3972, + 0.5781, + 0.8034, + 0.6434, + 0.3601, + 0.5446, + 0.7353, + 0.0458, + 0.065, + 0.4226, + 0.6156, + 0.2199, + 0.3804, + 0.3036, + 0.5774, + 0.6603, + 0.3014, + 0.4085, + 0.5884, + 0.573, + 0.3077, + 0.7062, + 0.709, + 0.2583, + 0.491, + 0.536, + 0.6936, + 0.7698, + 0.5657, + 0.2272, + 0.2802, + 0.292, + 0.3981, + 0.7599, + 0.2653, + 0.8991, + 0.6347, + 0.5828, + 0.5309, + 0.0827, + 0.5499, + 0.4228, + 0.4373, + 0.6166, + 0.9572, + 0.8939, + 0.5065, + 0.1439, + 0.1676, + 0.7919, + 0.1095, + 0.6143, + 0.3562, + 0.2012, + 0.3956, + 0.6352, + 0.9789, + 0.9154, + 0.5275, + 0.6256, + 0.545, + 0.2985, + 0.578, + 0.8607, + 0.1943, + 0.6403, + 0.5149, + 0.9665, + 0.3395, + 0.6473, + 0.6126, + 0.8224, + 0.908, + 0.4545, + 0.5963, + 0.0762, + 0.1357, + 0.6616, + 0.7411, + 0.5175, + 0.6741, + 0.4225, + 0.6857, + 0.2299, 0.3301, - 0.9202, - 0.109, - 0.9457, - 0.4986, - 0.6479, - 0.1197, - 0.2016, - 0.3986, - 0.6333, - 0.8344, - 0.6963, - 0.7506, - 0.0425, - 0.4795, - 0.1758, - 0.2545, - 0.3089, - 0.538, - 0.2222, - 0.5424, - 0.6098, - 0.9515, - 0.2715, - 0.6043, - 0.5853, - 0.2715, - 0.5569, - 0.9562, - 0.854, - 0.0744, - 0.9172, - 0.9809, - 0.2815, - 0.1373, - 0.164, - 0.0336, - 0.6962, - 0.3307, - 0.874, - 0.2447, - 0.3711, - 0.5783, - 0.8796, - 0.0834, - 0.3146, - 0.9096, - 0.6567, - 0.0497, - 0.1827, - 0.1758, - 0.6349, - 0.6261, - 0.7496, - 0.0268, - 0.5757, - 0.029, - 0.3425, - 0.8142, - 0.0441, - 0.6203, - 0.3545, - 0.3623, - 0.5392, - 0.2254, - 0.3259, - 0.0031, - 0.4309, - 0.7516, - 0.9973, - 0.9875, - 0.1015, - 0.4361, - 0.859, - 0.1415, - 0.2588, - 0.1771, - 0.2599, - 0.2137, - 0.6901, - 0.9959, - 0.0859, - 0.4704, - 0.0129, - 0.4442, - 0.3036, - 0.2642, - 0.9287, - 0.4273, - 0.8206, - 0.9042, - 0.4095, - 0.2219, - 0.8946, - 0.8947, - 0.6809, - 0.8193, - 0.8607, - 0.9718, - 0.0492, - 0.9445, - 0.8321, - 0.191, - 0.8037, - 0.9986, - 0.803, - 0.8842, - 0.6186, - 0.2628, - 0.9752, - 0.6691, - 0.1521, - 0.0292, - 0.2114, - 0.0146, - 0.3146, - 0.4341, - 0.8233, - 0.7727, - 0.9136, - 0.8319, - 0.1525, - 0.6086, - 0.5068, - 0.9872, - 0.4606, - 0.9713, - 0.8491, - 0.9823, - 0.4681, - 0.3183, - 0.6153, - 0.7939, - 0.6225, - 0.7069, - 0.5634, - 0.8897, - 0.8341, - 0.7186, - 0.2196, - 0.8788, - 0.4271, - 0.4074, - 0.9771, - 0.3062, - 0.2028, - 0.5196, - 0.43, - 0.9326, - 0.6179, - 0.0793, - 0.2874, - 0.9427, - 0.2533, - 0.4379, - 0.9041, - 0.5771, - 0.6745, - 0.0525, + 0.3408, + 0.0651, + 0.9892, + 0.8207, + 0.383, + 0.7264, + 0.4918, + 0.3866, + 0.7837, + 0.9539, + 0.5852, + 0.9881, + 0.0482, + 0.0398, + 0.3864, + 0.4496, + 0.4336, + 0.4735, + 0.3276, + 0.8276, + 0.3782, + 0.4435, + 0.8126, + 0.1474, + 0.5237, + 0.7417, + 0.122, + 0.0303, + 0.3463, + 0.0366, + 0.1683, + 0.9743, + 0.9559, + 0.5556, + 0.9591, + 0.5504, + 0.7313, 0.9579, - 0.6223, - 0.8375, - 0.3195, - 0.1658, - 0.1268, - 0.4679, - 0.6635, - 0.0583, - 0.0271, - 0.0709, - 0.7197, - 0.9028, - 0.7576, - 0.4252, - 0.0298, - 0.3564, - 0.9154, - 0.7151, - 0.378, - 0.601, - 0.1277, - 0.0202, - 0.576, - 0.1136, - 0.0588, - 0.6476, - 0.0065, - 0.2178, - 0.0192, - 0.5021, - 0.9185, - 0.7864, - 0.1157, - 0.7553, + 0.051, + 0.4056, 0.5954, - 0.7679, - 0.1798, - 0.3936, - 0.581, - 0.9323, - 0.096, - 0.7512, - 0.5164, - 0.7463, - 0.0961, - 0.1961, - 0.4468, - 0.4744, - 0.5687, - 0.3802, - 0.0498, - 0.2112, - 0.9706, - 0.2925, - 0.2015, - 0.5977, - 0.3501, - 0.6665, - 0.2368, - 0.2911, - 0.8318, - 0.6535, - 0.3864, - 0.5519, - 0.0433, - 0.2345, - 0.7647, - 0.6201, - 0.6906, - 0.4063, - 0.6894, - 0.1869, - 0.867, - 0.729, - 0.1019, - 0.5769, - 0.5323, - 0.628, - 0.2878, - 0.2915, - 0.7197, + 0.2661, 0.6306, - 0.7796, - 0.9341, - 0.4016, - 0.965, - 0.7555, - 0.2864, - 0.1182, - 0.0672, - 0.0181, - 0.114, - 0.3279, - 0.9984, - 0.6504, - 0.8357, - 0.0608, - 0.9938, - 0.5645, - 0.2605, - 0.5627, - 0.2096, - 0.1583, - 0.4206, - 0.9218, - 0.7674, - 0.123, - 0.5815, - 0.4749, - 0.9448, - 0.4215, - 0.0071, - 0.4175, - 0.3578, - 0.2762, - 0.9312, - 0.1989, - 0.0073, - 0.626, - 0.2512, - 0.4132, - 0.8305, - 0.4174, - 0.3375, - 0.8911, - 0.2677, - 0.8054, - 0.0302, - 0.7642, - 0.9914, - 0.6082, - 0.7071, - 0.7913, - 0.2999, - 0.0663, - 0.0347, - 0.8172, - 0.9584, - 0.0016, - 0.3245, - 0.5303, - 0.7657, - 0.6495, - 0.9711, - 0.0429, - 0.8242, - 0.7475, - 0.2348, - 0.202, - 0.2382, - 0.6471, - 0.5313, - 0.5352, - 0.5994, - 0.8304, - 0.2402, - 0.2289, - 0.9478, - 0.1861, - 0.112, - 0.5865, - 0.0185, - 0.7047, - 0.6375, - 0.0152, - 0.9212, - 0.1177, - 0.9638, - 0.1303, - 0.276, - 0.7535, - 0.7513, - 0.074, - 0.2041, - 0.9101, - 0.7551, - 0.2167, - 0.7672, - 0.3064, - 0.4141, - 0.8919, - 0.8347, - 0.4296, - 0.8667, - 0.4143, - 0.7002, - 0.5653, - 0.9347, - 0.5862, - 0.8142, - 0.5354, - 0.3405, - 0.4955, - 0.8896, - 0.2505, - 0.2717, - 0.9025, - 0.7561, - 0.3905, - 0.7428, - 0.0443, - 0.6038, - 0.9115, - 0.4883, - 0.6433, - 0.0221, - 0.0681, - 0.4951, - 0.2489, - 0.2081, - 0.7333, - 0.5119, - 0.0925, - 0.5721, - 0.1938, - 0.7388, - 0.31, - 0.5581, - 0.1724, - 0.7057, - 0.8891, - 0.7577, - 0.8042, - 0.201, - 0.6564, - 0.228, - 0.145, - 0.6218, - 0.9255, - 0.0609, - 0.1912, - 0.0839, - 0.6391, - 0.9513, - 0.0408, - 0.6223, - 0.9389, - 0.3938, - 0.2376, - 0.0203, - 0.3005, - 0.0475, - 0.6051, - 0.8966, - 0.0519, - 0.8205, - 0.2267, - 0.0845, - 0.7212, - 0.845, - 0.3103, - 0.4502, - 0.0882, - 0.9506, - 0.8442, - 0.4857, - 0.604, - 0.0297, - 0.1898, - 0.394, - 0.2869, - 0.5535, - 0.0072, - 0.9589, - 0.2669, - 0.2438, - 0.754, - 0.2232, - 0.8244, + 0.3883, + 0.491, + 0.2809, + 0.9529, + 0.4789, + 0.1698, + 0.0587, + 0.4446, 0.9716, - 0.2057, - 0.2733, - 0.7388, - 0.6034, - 0.6051, - 0.804, - 0.0998, - 0.9976, - 0.5779, - 0.0455, - 0.3211, - 0.473, - 0.3033, - 0.5527, - 0.3114, - 0.4897, - 0.583, - 0.9457, - 0.3204, - 0.3231, - 0.2726, - 0.832, - 0.9184, - 0.1906, - 0.8922, - 0.619, - 0.8617, - 0.7026, - 0.5186, - 0.5858, - 0.9105, - 0.2859, - 0.2574, - 0.0585, - 0.6214, - 0.7167, - 0.3997, - 0.04, - 0.9928, - 0.3864, - 0.4378, - 0.1773, - 0.5903, - 0.3315, - 0.2873, - 0.5371, - 0.7227, - 0.992, - 0.9329, - 0.9921, - 0.0429, - 0.9602, - 0.7469, - 0.3102, - 0.3929, - 0.4782, - 0.773, - 0.223, - 0.8007, - 0.1212, - 0.7266, - 0.4677, - 0.9736, - 0.8207, - 0.9654, - 0.264, - 0.9532, - 0.0346, - 0.1605, - 0.2463, - 0.7796, - 0.2592, - 0.8843, - 0.082, - 0.456, - 0.7785, - 0.8302, - 0.4647, - 0.971, - 0.2209, - 0.758, - 0.5049, - 0.8627, - 0.802, - 0.6154, - 0.6872, - 0.1891, - 0.9683, - 0.4106, - 0.0568, - 0.4435, - 0.07, - 0.0077, - 0.5037, - 0.811, - 0.5265, - 0.2355, - 0.5514, - 0.993, - 0.7062, - 0.4015, - 0.8987, - 0.8769, - 0.4858, - 0.0612, - 0.7979, - 0.634, - 0.6359, - 0.5857, - 0.7728, - 0.4774, - 0.1721, - 0.1549, - 0.9512, - 0.8244, - 0.5247, - 0.2201, - 0.833, - 0.5395, - 0.4101, - 0.0481, - 0.8562, - 0.7478, - 0.7717, - 0.3547, - 0.789, - 0.641, - 0.6533, - 0.8874, - 0.7164, - 0.248, - 0.9334, - 0.0049, - 0.4938, - 0.6379, - 0.0645, - 0.0967, - 0.6467, - 0.8089, - 0.4857, - 0.3796, - 0.8968, - 0.2006, - 0.3319, + 0.91, + 0.4287, + 0.7044, + 0.3201, 0.1486, - 0.4269, - 0.8534, - 0.0369, - 0.0321, - 0.2007, - 0.3165, - 0.0748, - 0.8549, - 0.5146, - 0.6009, - 0.402, - 0.3913, - 0.8237, - 0.5048, - 0.5848, - 0.0099, - 0.6087, - 0.4756, - 0.0895, - 0.2844, - 0.4856, - 0.3411, - 0.2788, - 0.891, - 0.6585, - 0.2916, - 0.8617, - 0.5049, - 0.5564, - 0.7817, - 0.9486, - 0.0703, - 0.0699, - 0.6577, - 0.7103, - 0.4541, - 0.0964, - 0.8623, - 0.4036, - 0.8979, - 0.5385, - 0.7164, - 0.5018, - 0.0204, - 0.481, - 0.1432, - 0.0812, - 0.0774, - 0.0407, - 0.6253, - 0.6605, - 0.8622, - 0.3307, - 0.1669, - 0.4928, - 0.4993, - 0.3136, - 0.2724, - 0.9737, - 0.5266, - 0.6242, - 0.3758, - 0.8046, - 0.3838, - 0.2566, - 0.796, - 0.3031, - 0.6542, - 0.475, - 0.7188, - 0.6185, - 0.4392, - 0.5899, - 0.5861, - 0.5542, - 0.2422, - 0.805, - 0.3178, - 0.4764, - 0.685, - 0.0141, - 0.2759, - 0.7194, - 0.3105, - 0.0072, - 0.7717, - 0.8216, - 0.7637, - 0.6126, - 0.9452, - 0.2559, - 0.7551, - 0.7685, - 0.6261, - 0.1279, - 0.3727, - 0.4065, - 0.2513, - 0.5972, - 0.2034, - 0.8959, - 0.0167, - 0.8903, - 0.731, - 0.1054, - 0.8529, - 0.335, - 0.9199, - 0.2939, - 0.8889, - 0.9478, - 0.2596, - 0.9968, - 0.8893, - 0.8316, - 0.1484, - 0.1741, - 0.1834, - 0.2804, - 0.6626, - 0.7876, - 0.8548, - 0.5555, - 0.7434, - 0.9945, - 0.1995, - 0.7766, - 0.9001, - 0.3539, - 0.1412, - 0.5849, - 0.4416, - 0.3222, - 0.1537, - 0.5413, - 0.2206, - 0.2535, - 0.5737, - 0.9752, - 0.2432, - 0.9796, - 0.5502, - 0.528, - 0.4784, - 0.2947, - 0.9402, - 0.0282, - 0.3881, - 0.793, - 0.7273, - 0.6119, - 0.171, - 0.4606, - 0.3669, - 0.5543, - 0.9176, - 0.2378, - 0.2519, - 0.5334, - 0.9086, - 0.4581, - 0.9915, - 0.2435, - 0.8965, - 0.4859, - 0.3928, - 0.3876, - 0.3234, - 0.7175, - 0.2927, - 0.9498, - 0.9693, - 0.6321, - 0.6426, - 0.2913, - 0.0644, - 0.0461, - 0.4448, - 0.3711, - 0.8167, - 0.6355, - 0.5221, - 0.813, - 0.8671, - 0.5045, - 0.4784, - 0.245, - 0.3995, - 0.8037, - 0.4333, - 0.2423, - 0.4464, - 0.6993, - 0.6883, - 0.7352, - 0.2138, - 0.3998, - 0.519, - 0.4286, - 0.4338, - 0.2788, - 0.6688, - 0.2608, - 0.1576, - 0.036, - 0.6894, - 0.792, - 0.9631, - 0.1037, - 0.5627, - 0.135, - 0.3308, - 0.3496, - 0.3552, - 0.6334, - 0.3919, - 0.4272, - 0.2525, - 0.845, - 0.2298, - 0.3533, - 0.7734, - 0.4755, - 0.5426, - 0.7953, - 0.0714, - 0.3826, - 0.4407, - 0.8483, - 0.6825, - 0.5398, - 0.5929, - 0.5783, - 0.1179, - 0.3878, - 0.5545, - 0.067, - 0.066, - 0.0638, - 0.1183, - 0.0621, - 0.4211, - 0.8341, - 0.4392, - 0.0049, - 0.9704, - 0.3133, - 0.2239, - 0.0475, - 0.4836, - 0.7532, - 0.5091, - 0.7822, - 0.018, - 0.0003, - 0.262, - 0.9086, - 0.9871, - 0.0622, - 0.0795, - 0.1177, - 0.3093, - 0.6061, - 0.5984, - 0.4844, - 0.1261, - 0.8564, - 0.275, - 0.8095, - 0.0604, - 0.584, - 0.4393, - 0.1136, - 0.922, - 0.6451, - 0.5628, + 0.9927, + 0.4316, + 0.0027, + 0.0332, + 0.7373, + 0.0114, + 0.3008, + 0.6177, + 0.8453, + 0.9483, + 0.847, + 0.6323, + 0.1607, + 0.4158, + 0.5693, + 0.0979, + 0.5682, + 0.342, + 0.8014, + 0.6767, + 0.5252, + 0.108, + 0.9555, + 0.3351, + 0.9816, + 0.0596, + 0.1831, + 0.0339, + 0.9669, + 0.5775, + 0.3214, + 0.3315, + 0.6934, + 0.6042, + 0.6739, + 0.4788, + 0.0531, + 0.8364, 0.5335, - 0.3789, - 0.9667, - 0.5256, - 0.7573, - 0.2593, - 0.3847, - 0.469, - 0.5564, - 0.7474, - 0.7094, - 0.7522, - 0.6737, - 0.3779, + 0.1904, + 0.0216, + 0.5193, + 0.0312, + 0.5944, + 0.7389, + 0.2284, + 0.5686, + 0.5536, + 0.6023, + 0.7386, + 0.448, + 0.9182, + 0.1631, + 0.8271, + 0.1394, + 0.4502, + 0.9299, + 0.6464, + 0.767, + 0.3863, + 0.9632, + 0.016, + 0.3672, + 0.9009, + 0.8247, + 0.4709, + 0.075, + 0.8892, + 0.9186, + 0.8775, + 0.9454, + 0.3514, + 0.3585, + 0.8058, + 0.9639, + 0.8826, + 0.04, + 0.502, + 0.8362, + 0.7575, + 0.4785, + 0.1545, + 0.9482, + 0.596, + 0.1157, + 0.2161, + 0.4321, + 0.7913, + 0.7144, + 0.2117, + 0.8407, + 0.2249, + 0.4998, + 0.0884, + 0.2992, + 0.9746, + 0.5062, + 0.1149, + 0.1358, + 0.8172, + 0.7495, + 0.4091, + 0.2706, + 0.1698, + 0.7598, + 0.4034, + 0.3645, + 0.8158, + 0.1122, + 0.0853, + 0.3995, + 0.7988, + 0.5365, + 0.9831, + 0.6823, + 0.1032, + 0.3581, + 0.2286, + 0.9826, + 0.2424, + 0.1812, + 0.073, + 0.4379, + 0.3531, + 0.6084, + 0.5075, + 0.1214, + 0.0285, + 0.563, + 0.3739, + 0.6344, + 0.2298, + 0.552, + 0.946, + 0.1861, + 0.7465, + 0.2196, + 0.596, + 0.3313, + 0.8063, + 0.6328, + 0.0333, + 0.8555, + 0.7715, + 0.2741, + 0.9829, + 0.7937, + 0.0923, + 0.0803, + 0.535, + 0.4064, + 0.6567, + 0.8868, + 0.8257, + 0.9922, + 0.0354, + 0.2712, + 0.3035, + 0.7632, + 0.0187, + 0.1611, + 0.1829, + 0.4617, + 0.6299, + 0.6405, + 0.4834, + 0.8211, + 0.6901, + 0.8016, + 0.6545, + 0.8756, + 0.2078, + 0.172, + 0.6833, + 0.973, + 0.8792, + 0.5519, + 0.9194, + 0.2389, + 0.7443, + 0.6862, + 0.793, + 0.6413, + 0.6485, + 0.2969, + 0.9315, + 0.1872, + 0.678, + 0.0318, + 0.7542, + 0.9527, + 0.2989, + 0.5182, + 0.8505, + 0.5759, + 0.0565, + 0.1854, + 0.0799, + 0.4387, + 0.0907, + 0.3632, + 0.6594, + 0.0734, + 0.91, + 0.4713, + 0.3804, + 0.4221, + 0.6861, + 0.1757, + 0.5942, + 0.4931, + 0.8026, + 0.6357, + 0.6439, + 0.5991, + 0.6266, + 0.9816, + 0.0594, + 0.0186, + 0.2686, + 0.5548, + 0.2464, + 0.5441, + 0.8801, + 0.6396, + 0.3827, + 0.4193, + 0.906, + 0.1195, + 0.734, + 0.5084, + 0.8912, + 0.4053, + 0.3532, + 0.6129, + 0.9562, + 0.4238, + 0.7855, + 0.4642, + 0.3084, + 0.3622, + 0.5182, + 0.0804, + 0.2736, + 0.8267, + 0.3421, + 0.5684, + 0.8782, + 0.8397, + 0.6497, + 0.6128, + 0.5449, + 0.903, + 0.8481, + 0.0628, + 0.5661, + 0.2787, + 0.4535, + 0.0878, + 0.2867, + 0.2899, + 0.2117, + 0.5153, + 0.8089, + 0.0249, + 0.3067, + 0.7813, + 0.1485, + 0.013, + 0.9598, + 0.7629, + 0.9154, + 0.8201, + 0.8632, + 0.9787, + 0.5723, + 0.363, + 0.7056, + 0.0272, + 0.5345, + 0.4883, + 0.9217, + 0.0154, + 0.7204, + 0.4193, + 0.9916, + 0.7358, + 0.685, + 0.8154, + 0.6262, + 0.2436, + 0.5572, + 0.2321, + 0.5306, + 0.5433, + 0.6359, + 0.0819, + 0.2723, + 0.7431, + 0.6284, + 0.0763, + 0.5871, + 0.139, + 0.7713, + 0.4043, + 0.3529, + 0.4625, + 0.017, + 0.9968, + 0.9873, + 0.9766, + 0.1662, + 0.667, + 0.6176, + 0.9957, + 0.8226, + 0.0847, + 0.3238, + 0.0482, + 0.1038, + 0.4555, + 0.2561, + 0.5041, + 0.3577, + 0.6318, + 0.1231, + 0.8011, + 0.5637, + 0.3976, + 0.0775, + 0.7656, + 0.4912, + 0.7187, + 0.2709, + 0.9552, + 0.8482, + 0.5179, + 0.4665, + 0.934, + 0.755, + 0.186, + 0.4051, + 0.0853, + 0.5795, + 0.4803, + 0.3306, + 0.5887, + 0.4085, + 0.3204, + 0.0884, + 0.4448, + 0.4452, + 0.3196, + 0.4195, + 0.1006, + 0.1076, + 0.2834, + 0.6219, + 0.3459, + 0.142, + 0.7883, + 0.4165, + 0.9178, + 0.9275, + 0.5891, + 0.3905, + 0.7372, + 0.6323, + 0.3747, + 0.2404, + 0.8494, + 0.2943, + 0.7774, + 0.9488, + 0.6026, + 0.3491, + 0.2612, + 0.5936, + 0.1956, + 0.7729, + 0.3889, + 0.5426, + 0.8308, + 0.4204, + 0.0425, + 0.9705, + 0.0768, + 0.3113, + 0.7231, + 0.9271, + 0.6323, + 0.3333, + 0.4471, + 0.8804, + 0.3954, + 0.2576, + 0.3709, + 0.2306, + 0.1531, + 0.5567, + 0.4313, + 0.7819, + 0.2459, + 0.6564, + 0.0141, + 0.177, + 0.2361, + 0.6289, + 0.6323, + 0.0121, + 0.495, + 0.325, + 0.0724, + 0.1117, + 0.8142, + 0.5013, + 0.8342, + 0.8702, + 0.1444, + 0.022, + 0.2121, + 0.7566, + 0.9083, + 0.2988, + 0.3592, + 0.0013, + 0.1438, + 0.9514, + 0.8004, + 0.3405, + 0.8411, + 0.0371, + 0.9747, + 0.6727, + 0.426, + 0.4178, + 0.771, + 0.952, + 0.6214, + 0.336, + 0.3838, + 0.9438, + 0.1461, + 0.0398, + 0.5736, + 0.489, + 0.6462, + 0.1054, + 0.9502, + 0.5565, + 0.3786, + 0.7765, + 0.7359, + 0.145, + 0.7977, + 0.6776, + 0.581, + 0.171, + 0.5803, + 0.8509, + 0.2643, + 0.8252, + 0.8747, + 0.6177, + 0.5139, + 0.7361, + 0.1763, + 0.7878, + 0.587, + 0.4155, + 0.4132, + 0.1652, + 0.0214, + 0.4918, + 0.502, + 0.787, + 0.3781, + 0.7728, + 0.9532, + 0.6473, + 0.1574, + 0.096, + 0.4053, + 0.2478, + 0.1559, + 0.7491, + 0.2302, + 0.4191, + 0.3891, + 0.6854, + 0.8955, + 0.5728, + 0.2852, + 0.6137, + 0.1713, + 0.5578, + 0.0444, + 0.778, + 0.139, + 0.6808, + 0.8233, + 0.1396, + 0.6283, + 0.7842, + 0.6219, + 0.2415, + 0.9602, + 0.0295, + 0.5739, + 0.3997, + 0.3384, + 0.2082, + 0.601, + 0.2147, + 0.4499, + 0.5344, + 0.0011, + 0.3391, + 0.4761, + 0.1071, + 0.3604, + 0.8543, + 0.1008, + 0.2197, + 0.9487, + 0.9569, + 0.6885, + 0.7623, + 0.2862, + 0.4365, + 0.9013, + 0.2256, + 0.4483, + 0.8815, + 0.4406, + 0.5056, + 0.8401, + 0.6825, + 0.2578, + 0.2042, + 0.6406, + 0.4351, + 0.3122, + 0.4562, + 0.4779, + 0.458, + 0.1852, + 0.8852, + 0.5884, + 0.5181, + 0.1313, + 0.8497, + 0.5287, + 0.5868, + 0.4486, + 0.5117, + 0.8296, + 0.0439, + 0.2638, + 0.0385, + 0.9723, + 0.3494, + 0.5802, + 0.7489, + 0.0313, + 0.0304, + 0.2996, + 0.934, + 0.3151, + 0.4468, + 0.4044, + 0.0637, + 0.3616, + 0.3035, + 0.1272, + 0.4146, + 0.653, + 0.176, + 0.699, + 0.2472, + 0.0119, + 0.1595, + 0.7614, + 0.1087, + 0.9198, + 0.5001, + 0.0904, + 0.2421, + 0.2984, + 0.2232, + 0.9941, + 0.2126, + 0.4082, + 0.5144, + 0.3524, + 0.3482, + 0.7174, + 0.486, + 0.8498, + 0.8433, + 0.1258, + 0.7592, + 0.3613, + 0.7016, + 0.1826, + 0.4791, + 0.4574, + 0.4044, + 0.1766, + 0.7428, + 0.0654, + 0.9845, + 0.1692, + 0.9835, + 0.074, + 0.1782, + 0.2762, + 0.7239, + 0.4741, + 0.9253, + 0.5248, + 0.8473, + 0.0889, + 0.3319, + 0.7895, + 0.1181, + 0.4825, + 0.0626, + 0.9554, + 0.8902, + 0.3759, + 0.0287, + 0.9581, + 0.4851, + 0.1915, + 0.552, + 0.1762, + 0.5241, + 0.8611, + 0.8544, + 0.3223, + 0.6585, + 0.9591, + 0.4267, + 0.9825, + 0.8311, + 0.1496, + 0.2906, + 0.7228, + 0.8756, + 0.2642, + 0.7543, + 0.6504, + 0.761, + 0.561, + 0.4519, + 0.5246, + 0.9621, + 0.0695, + 0.7834, + 0.2795, + 0.1857, + 0.5794, + 0.6813, + 0.0721, + 0.4528, + 0.402, + 0.3683, + 0.471, + 0.3105, + 0.8453, + 0.3654, + 0.6473, + 0.2225, + 0.7797, + 0.8257, + 0.1359, + 0.5573, + 0.9215, + 0.1314, + 0.0031, + 0.9058, + 0.9525, + 0.6382, + 0.7606, + 0.2004, + 0.2195, + 0.9862, + 0.0779, + 0.706, + 0.5766, + 0.9533, + 0.2854, + 0.6692, + 0.736, + 0.0624, + 0.3511, + 0.678, + 0.2735, + 0.5446, + 0.6573, + 0.0079, + 0.5167, + 0.5277, + 0.5624, + 0.6868, + 0.2828, + 0.0097, + 0.3532, + 0.7539, + 0.5048, + 0.1583, + 0.4311, + 0.4196, + 0.3249, + 0.6755, + 0.0084, + 0.8149, + 0.4863, + 0.1989, + 0.0139, + 0.8496, + 0.0022, + 0.8048, + 0.8313, + 0.3911, + 0.6723, + 0.036, + 0.21, + 0.05, + 0.0865, + 0.8435, + 0.8858, + 0.9806, + 0.971, + 0.5749, + 0.9731, + 0.9146, + 0.8395, + 0.6559, + 0.3676, + 0.3171, + 0.1025, + 0.7859, + 0.7045, + 0.323, + 0.4351, + 0.793, + 0.3928, + 0.3096, + 0.1465, + 0.6475, + 0.2514, + 0.4253, + 0.9388, + 0.0371, + 0.0727, + 0.1772, + 0.5, + 0.9379, + 0.48, + 0.0659, + 0.7534, + 0.6547, + 0.242, + 0.5335, + 0.5535, + 0.9947, + 0.3061, + 0.5567, + 0.8612, + 0.085, + 0.8885, + 0.8089, + 0.5585, + 0.582, + 0.2206, + 0.5826, + 0.0048, + 0.6888, + 0.6787, + 0.2214, + 0.2288, + 0.3995, + 0.8417, + 0.0653, + 0.3344, + 0.5946, + 0.5393, + 0.3588, + 0.3803, + 0.1041, + 0.4128, + 0.92, + 0.7712, + 0.2496, + 0.901, + 0.8659, + 0.1456, + 0.912, + 0.3906, + 0.4536, + 0.5962, + 0.326, + 0.8383, + 0.208, + 0.6572, + 0.1964, + 0.3413, + 0.3837, + 0.3546, + 0.0646, + 0.119, + 0.8369, + 0.0995, + 0.61, + 0.7292, + 0.1238, + 0.9218, + 0.9014, + 0.5181, + 0.5329, + 0.3832, + 0.0103, + 0.5031, + 0.0687, + 0.6134, + 0.2494, + 0.6742, + 0.0355, + 0.3661, + 0.4296, + 0.5451, + 0.9586, + 0.6335, + 0.5203, + 0.809, + 0.3644, + 0.3011, + 0.4327, + 0.889, + 0.1322, + 0.0554, + 0.4864, + 0.0716, + 0.0674, + 0.0047, + 0.6229, + 0.3518, + 0.2442, + 0.3484, + 0.2436, + 0.2417, + 0.4398, + 0.0298, + 0.5919, + 0.1123, + 0.6638, + 0.7667, + 0.2128, + 0.8431, + 0.5382, + 0.2257, + 0.8204, + 0.8667, + 0.8231, + 0.5594, + 0.3985, + 0.9725, + 0.8588, + 0.0857, + 0.9018, + 0.1196, + 0.7061, + 0.172, + 0.0842, + 0.8239, + 0.2715, + 0.2936, + 0.8348, + 0.6746, + 0.6545, + 0.8583, + 0.341, + 0.9117, + 0.9344, + 0.0037, + 0.8335, + 0.1254, + 0.7146, + 0.4774, + 0.4845, + 0.0131, + 0.6743, + 0.12, + 0.1244, + 0.1924, + 0.4374, + 0.7699, + 0.3924, + 0.6459, + 0.9453, + 0.9823, + 0.5208, + 0.775, + 0.2567, + 0.393, + 0.64, + 0.2408, + 0.466, + 0.4108, + 0.6872, + 0.7907, + 0.1421, + 0.48, + 0.877, + 0.6947, + 0.7198, + 0.3727, + 0.5018, + 0.191, + 0.4562, + 0.6961, + 0.0745, + 0.3714, + 0.7892, + 0.9084, + 0.87, + 0.4266, + 0.8774, + 0.9642, + 0.3396, + 0.1053, + 0.334, + 0.0684, + 0.0079, + 0.053, + 0.6106, + 0.4107, + 0.1757, + 0.9677, + 0.0259, + 0.7827, + 0.6391, + 0.0248, + 0.8992, + 0.0585, + 0.0161, + 0.1797, + 0.1242, + 0.2093, + 0.4184, + 0.0445, + 0.3066, + 0.3462, + 0.1934, + 0.0387, + 0.3605, + 0.1428, + 0.2982, + 0.2499, + 0.0019, + 0.5375, + 0.3389, + 0.1448, + 0.2119, + 0.6717, + 0.831, + 0.1396, + 0.616, + 0.906, + 0.3788, + 0.0264, + 0.6257, + 0.5298, + 0.2735, + 0.3025, + 0.7076, + 0.1104, + 0.0679, + 0.9928, + 0.5349, + 0.6014, + 0.5902, + 0.3129, + 0.0882, + 0.2371, + 0.9354, + 0.926, + 0.4725, + 0.8069, + 0.381, + 0.4136, + 0.7183, + 0.1267, + 0.3125, + 0.5331, + 0.0694, + 0.6418, + 0.3464, + 0.815, + 0.3198, + 0.7001, + 0.9967, + 0.215, + 0.9432, + 0.1554, + 0.8407, + 0.035, + 0.407, + 0.4314, + 0.5217, + 0.4964, + 0.089, + 0.6195, + 0.298, + 0.5979, + 0.0147, + 0.5997, + 0.6721, + 0.695, + 0.2561, + 0.1686, + 0.9225, + 0.9689, + 0.8977, + 0.9938, + 0.1031, + 0.6107, + 0.6946, + 0.7555, + 0.4664, + 0.2062, + 0.0264, + 0.2895, + 0.1826, + 0.8368, + 0.7749, + 0.9071, + 0.0503, + 0.3459, + 0.2011, + 0.6912, + 0.1514, + 0.2574, + 0.3679, + 0.6152, + 0.1426, + 0.0979, + 0.1548, + 0.1346, + 0.3046, + 0.5053, + 0.8193, + 0.5221, + 0.3882, + 0.6533, + 0.5427, + 0.4662, + 0.8339, + 0.0558, + 0.9906, + 0.4302, + 0.2675, + 0.698, + 0.5213, + 0.105, + 0.5552, + 0.5192, + 0.7138, + 0.3257, + 0.9173, + 0.0472, + 0.5069, + 0.7241, + 0.6619, + 0.9715, + 0.9538, + 0.419, + 0.8172, + 0.024, + 0.0774, + 0.1855, + 0.621, + 0.9763, + 0.1567, + 0.8187, + 0.3054, + 0.3441, + 0.7385, + 0.3767, + 0.4639, + 0.0157, + 0.0582, + 0.3392, + 0.2436, + 0.2393, + 0.7591, + 0.0877, + 0.6276, + 0.4434, + 0.7348, + 0.45, + 0.0296, + 0.5034, + 0.7499, + 0.4759, + 0.8426, + 0.3794, + 0.3826, + 0.6648, + 0.2666, + 0.6735, + 0.749, + 0.1921, + 0.8162, + 0.8633, + 0.9589, + 0.0967, + 0.234, + 0.4639, + 0.6798, + 0.0984, + 0.934, + 0.013, + 0.0635, + 0.2182, + 0.6065, + 0.1136, + 0.2612, + 0.8507, + 0.989, + 0.9095, + 0.6578, + 0.165, + 0.0673, + 0.6536, + 0.1014, + 0.0863, + 0.2812, + 0.9168, + 0.094, + 0.5729, + 0.2812, + 0.8143, + 0.0406, + 0.7742, + 0.3437, + 0.6612, + 0.407, + 0.3929, + 0.7112, + 0.288, + 0.835, + 0.6798, + 0.5455, + 0.9251, + 0.0532, + 0.1917, + 0.24, + 0.5291, + 0.6781, + 0.4053, + 0.102, + 0.048, + 0.6632, + 0.1917, + 0.7899, + 0.7158, + 0.8535, + 0.8125, + 0.8721, + 0.7782, + 0.5528, + 0.1075, + 0.3837, + 0.5718, + 0.6905, + 0.433, + 0.457, + 0.4262, + 0.3728, + 0.7345, + 0.6785, + 0.6361, + 0.6146, + 0.7307, + 0.7163, + 0.5999, + 0.9331, + 0.4035, + 0.3399, + 0.8959, + 0.2373, + 0.6745, + 0.1395, + 0.3961, + 0.1194, + 0.6431, + 0.4137, + 0.573, + 0.1041, + 0.5363, + 0.313, + 0.9254, + 0.0184, + 0.5983, + 0.4263, + 0.8585, + 0.2318, + 0.7968, + 0.7147, + 0.9696, + 0.9238, + 0.0101, + 0.2179, + 0.7308, + 0.0951, + 0.7245, + 0.0423, + 0.0489, + 0.1375, + 0.1311, + 0.6371, + 0.5453, + 0.73, + 0.4585, + 0.8768, + 0.71, + 0.9228, + 0.9256, + 0.8206, + 0.9248, + 0.1052, + 0.4586, + 0.0504, + 0.5529, + 0.689, + 0.3974, + 0.3085, + 0.6154, + 0.2417, + 0.8079, + 0.1643, + 0.686, + 0.7641, + 0.6779, + 0.9169, + 0.564, + 0.1087, + 0.642, + 0.2928, + 0.906, + 0.5556, + 0.1838, + 0.7398, + 0.6146, + 0.86, + 0.4548, + 0.5282, + 0.9963, + 0.0054, + 0.2261, + 0.2277, + 0.2184, + 0.0972, + 0.5574, + 0.5471, + 0.6942, + 0.2488, + 0.5332, + 0.5911, + 0.037, + 0.2817, + 0.4336, + 0.9314, + 0.4262, + 0.9686, + 0.1245, + 0.9549, + 0.4591, + 0.2987, + 0.1247, + 0.3039, + 0.3374, + 0.5454, + 0.19, + 0.982, + 0.5224, + 0.7667, + 0.1338, + 0.1962, + 0.67, + 0.6782, + 0.6035, + 0.6071, + 0.2313, + 0.8023, + 0.4678, + 0.7243, + 0.6403, + 0.1371, + 0.3335, + 0.3268, + 0.2908, + 0.8356, + 0.5163, + 0.4616, + 0.0613, + 0.7152, + 0.011, + 0.8034, + 0.1787, + 0.7871, + 0.1461, + 0.5801, + 0.0257, + 0.8722, + 0.1796, + 0.0871, + 0.5669, + 0.8024, + 0.2378, + 0.4711, + 0.6144, + 0.2368, + 0.2505, + 0.1523, + 0.7006, + 0.5115, + 0.1666, + 0.26, + 0.6122, + 0.9798, + 0.3313, + 0.8868, + 0.8931, + 0.8889, + 0.5359, + 0.1828, + 0.7356, + 0.1563, + 0.8704, + 0.5687, + 0.8024, + 0.9723, + 0.14, + 0.4895, + 0.4301, + 0.3272, + 0.0807, + 0.6877, + 0.5599, + 0.2326, + 0.856, + 0.9012, + 0.8796, + 0.5946, + 0.7184, + 0.2253, + 0.1234, + 0.7755, + 0.7368, + 0.1818, + 0.302, + 0.075, + 0.1282, + 0.7539, + 0.1233, + 0.0794, + 0.5524, + 0.0559, + 0.8043, + 0.7576, + 0.0585, + 0.7524, + 0.8092, + 0.5207, + 0.0507, + 0.9115, + 0.2453, + 0.3709, + 0.5772, + 0.5324, + 0.0176, + 0.9642, + 0.2266, + 0.0933, + 0.3434, + 0.6773, + 0.6618, + 0.1763, + 0.8693, + 0.5786, + 0.2692, + 0.2524, + 0.0082, + 0.6704, + 0.1646, + 0.0335, + 0.4643, + 0.2039, + 0.1801, + 0.6161, + 0.9358, + 0.5122, + 0.5561, + 0.837, + 0.1241, + 0.2187, + 0.1875, + 0.4089, + 0.1746, + 0.1906, + 0.7805, + 0.6684, + 0.3048, + 0.1005, + 0.6036, + 0.539, + 0.6789, + 0.229, + 0.6482, + 0.6773, + 0.572, + 0.6727, + 0.8364, + 0.8688, + 0.9634, + 0.0574, + 0.6394, + 0.6237, + 0.498, + 0.0558, + 0.2151, + 0.0799, + 0.2357, + 0.7831, + 0.864, + 0.2232, + 0.4593, + 0.6772, + 0.9219, + 0.0605, + 0.4208, + 0.3202, + 0.1186, + 0.9432, + 0.236, + 0.9353, + 0.8312, + 0.6346, + 0.1945, + 0.7968, + 0.6806, + 0.903, + 0.9617, + 0.7393, + 0.1411, + 0.3084, + 0.6015, + 0.9863, + 0.4518, + 0.1929, + 0.8369, + 0.1022, + 0.7577, + 0.7814, + 0.858, + 0.1672, + 0.7078, + 0.5124, + 0.2778, + 0.1143, + 0.3623, + 0.701, + 0.3993, + 0.1425, + 0.4769, + 0.6238, + 0.9002, + 0.1328, + 0.1993, + 0.8544, + 0.6662, + 0.3008, + 0.2839, + 0.3572, + 0.0651, + 0.263, + 0.2154, + 0.3468, + 0.5854, + 0.2384, + 0.3979, + 0.672, + 0.4244, + 0.6847, + 0.7767, + 0.252, + 0.2835, + 0.2854, + 0.6712, + 0.0944, + 0.8952, + 0.0962, + 0.1302, + 0.4762, + 0.08, + 0.8266, + 0.9641, + 0.9246, + 0.2361, + 0.6938, + 0.724, + 0.9298, + 0.6263, + 0.8063, + 0.8812, + 0.9983, + 0.0875, + 0.172, + 0.0555, + 0.2539, + 0.0365, + 0.8721, + 0.0149, + 0.9641, + 0.8867, + 0.7921, + 0.2285, + 0.6106, + 0.4777, + 0.8774, + 0.4398, + 0.7435, + 0.3805, + 0.9716, + 0.9508, + 0.7081, + 0.5065, + 0.941, + 0.2032, + 0.819, + 0.2126, + 0.1435, + 0.1989, + 0.8504, + 0.8722, + 0.0435, + 0.1824, + 0.503, + 0.0506, + 0.1948, + 0.4193, + 0.3794, + 0.9255, + 0.4408, + 0.3735, + 0.4048, + 0.8118, + 0.2994, + 0.1753, + 0.3572, + 0.8896, + 0.1268, + 0.9169, + 0.071, + 0.0011, + 0.6314, + 0.7772, + 0.8442, + 0.8242, + 0.9838, + 0.2147, + 0.507, + 0.85, + 0.593, + 0.6884, + 0.3704, + 0.6263, + 0.3804, + 0.4047, + 0.2738, + 0.1849, + 0.7235, + 0.4022, + 0.6517, + 0.4948, + 0.2778, + 0.8261, + 0.6765, + 0.8812, + 0.4587, + 0.4818, + 0.2896, + 0.7406, + 0.8083, + 0.028, + 0.6755, + 0.1412, + 0.1078, + 0.28, + 0.1407, + 0.3001, + 0.3744, + 0.352, + 0.422, + 0.8785, + 0.4693, + 0.1048, + 0.8319, + 0.3913, + 0.1661, + 0.2747, + 0.955, + 0.9965, + 0.2973, + 0.8992, + 0.4663, + 0.7122, + 0.0741, + 0.2749, + 0.8958, + 0.9213, + 0.3554, + 0.888, + 0.5356, + 0.3205, + 0.8403, + 0.6301, + 0.9423, + 0.5666, + 0.0297, + 0.8175, + 0.815, + 0.0799, + 0.8681, + 0.8502, + 0.8766, + 0.4085, + 0.1538, + 0.5381, + 0.599, + 0.3254, + 0.6797, + 0.78, + 0.1978, + 0.0383, + 0.6799, + 0.731, + 0.5225, + 0.2644, + 0.6381, + 0.7634, + 0.6158, + 0.7173, + 0.1817, + 0.3641, + 0.3549, + 0.8513, + 0.7271, + 0.2722, + 0.0503, + 0.5044, + 0.5571, + 0.5642, + 0.5213, + 0.3645, + 0.7664, + 0.1631, + 0.3965, + 0.032, + 0.5499, + 0.6323, + 0.6351, + 0.9769, + 0.3672, + 0.5332, + 0.8082, + 0.7595, + 0.3378, + 0.9286, + 0.6507, + 0.6221, + 0.2012, + 0.7545, + 0.1192, + 0.8913, + 0.6038, + 0.2815, + 0.0892, + 0.646, + 0.6474, + 0.5359, + 0.4413, + 0.6249, + 0.4769, + 0.8508, + 0.8032, + 0.5546, + 0.5706, + 0.8871, + 0.2562, + 0.4481, + 0.7118, + 0.6426, + 0.8554, + 0.7507, + 0.5078, + 0.0022, + 0.864, + 0.1534, + 0.3859, + 0.439, + 0.8567, + 0.261, + 0.9736, + 0.1839, + 0.8557, + 0.2272, 0.5668, - 0.5925, - 0.6324, - 0.8359, - 0.5253, - 0.945, - 0.8308, - 0.4926, - 0.9056, - 0.4788, - 0.5293, - 0.1426, - 0.8786, - 0.2343, - 0.7674, - 0.6897, - 0.7933, - 0.4414, - 0.8718, - 0.5298, - 0.7378, - 0.7512, - 0.743, - 0.1686, - 0.345, - 0.723, - 0.94, - 0.386, - 0.0357, - 0.6074, - 0.2503, - 0.8355, - 0.7166, - 0.6322, - 0.3476, - 0.7522, - 0.2901, - 0.6852, - 0.8062, - 0.4798, - 0.6699, - 0.124, - 0.8163, - 0.7493, - 0.7779, - 0.0354, - 0.0302, - 0.7456, - 0.7871, - 0.9936, - 0.7846, - 0.6515, - 0.3552, - 0.9751, - 0.4794, - 0.8556, - 0.9017, - 0.2817, - 0.5772, - 0.0109, - 0.6521, - 0.9283, - 0.2394, + 0.008, + 0.1339, + 0.2643, + 0.793, + 0.473, + 0.5565, + 0.7302, + 0.7926, + 0.0247, + 0.6253, + 0.3976, + 0.148, + 0.1893, + 0.8877, + 0.118, + 0.1349, + 0.199, + 0.7225, + 0.2155, + 0.0432, + 0.6092, + 0.4721, + 0.9009, + 0.1144, + 0.5833, + 0.0404, + 0.5953, + 0.6474, + 0.6386, + 0.5152, + 0.3649, + 0.7204, + 0.4588, + 0.7279, + 0.9158, + 0.2522, + 0.7013, + 0.7328, + 0.8102, + 0.674, + 0.8583, + 0.3442, + 0.9116, + 0.131, + 0.6442, + 0.7864, + 0.9179, + 0.8161, + 0.5694, + 0.4598, + 0.633, + 0.669, + 0.2462, + 0.8338, + 0.885, + 0.7757, + 0.9944, + 0.2079, + 0.1321, + 0.6035, + 0.7642, + 0.4845, + 0.5646, + 0.2529, + 0.4692, + 0.0212, + 0.5749, + 0.3849, + 0.8153, + 0.5924, + 0.0096, + 0.5626, + 0.0355, + 0.009, + 0.2358, + 0.8423, + 0.7395, + 0.704, + 0.9441, + 0.1559, + 0.952, + 0.3599, + 0.7036, + 0.7066, + 0.9453, + 0.0094, + 0.1467, + 0.0945, + 0.3001, + 0.5215, + 0.201, + 0.7793, + 0.3454, + 0.8016, + 0.3853, + 0.8637, + 0.9853, + 0.0065, + 0.5005, + 0.5263, + 0.7134, + 0.7107, + 0.9771, + 0.57, + 0.518, + 0.3901, + 0.5826, + 0.1716, + 0.1671, + 0.9194, + 0.1273, + 0.3184, + 0.4187, + 0.8266, + 0.4824, + 0.9635, + 0.2033, + 0.3431, + 0.2242, + 0.7293, + 0.0018, + 0.9331, + 0.4835, + 0.3937, + 0.4044, + 0.1705, + 0.774, + 0.0366, + 0.0327, + 0.843, + 0.4074, + 0.0965, + 0.2417, + 0.7581, + 0.0066, + 0.5639, + 0.7907, + 0.3115, + 0.7392, + 0.1438, 0.3887, - 0.9319, - 0.8746, - 0.9617, - 0.4524, - 0.9599, - 0.8508, - 0.3943, + 0.171, + 0.9407, + 0.8721, + 0.2055, + 0.7955, + 0.3933, + 0.5846, + 0.9186, + 0.9006, + 0.8301, + 0.5158, + 0.1059, + 0.0598, + 0.8186, + 0.1089, + 0.2792, + 0.8832, + 0.8267, + 0.7237, + 0.2818, + 0.6342, + 0.8896, + 0.7438, + 0.8096, + 0.2012, + 0.4919, + 0.6564, + 0.8543, + 0.213, + 0.6415, + 0.1767, + 0.2102, + 0.5807, + 0.1996, + 0.6209, + 0.6405, + 0.0033, + 0.7789, + 0.9982, + 0.6944, + 0.0155, + 0.5516, + 0.2584, + 0.9312, + 0.3479, + 0.4093, + 0.8732, + 0.7861, + 0.2362, + 0.0575, + 0.957, + 0.0098, + 0.5795, + 0.5612, + 0.2377, + 0.3722, + 0.3039, + 0.3535, + 0.9482, + 0.4129, + 0.0978, + 0.2864, + 0.1104, + 0.9666, + 0.2648, + 0.1462, + 0.9196, + 0.1916, + 0.0854, + 0.876, + 0.0569, + 0.3751, + 0.4245, + 0.7169, + 0.0921, + 0.8702, + 0.7879, + 0.1524, + 0.3708, + 0.3751, + 0.5967, + 0.8064, + 0.0484, + 0.4687, + 0.1537, 0.3366, - 0.2599, - 0.4966, - 0.5128, - 0.193, - 0.2745, - 0.5066, - 0.149, - 0.5556, - 0.5034, - 0.2456, - 0.6873, - 0.1393, - 0.4628, - 0.3322, - 0.8164, - 0.6557, - 0.1002, - 0.3589, - 0.6464, - 0.31, - 0.7377, - 0.5828, - 0.8456, - 0.7966, - 0.3099, - 0.9851, - 0.7044, - 0.1067, - 0.6648, - 0.2015, - 0.6714, - 0.5999, - 0.7637, - 0.5692, - 0.518, - 0.1885, - 0.3379, - 0.3605, - 0.6407, - 0.427, - 0.0523, - 0.78, - 0.2952, - 0.672, - 0.0152, - 0.9714, - 0.5241, - 0.0455, - 0.8111, - 0.9322, - 0.0859, - 0.6874, - 0.8313, + 0.5143, + 0.0693, + 0.2527, + 0.65, + 0.8197, + 0.1029, + 0.1445, + 0.5841, + 0.4057, + 0.083, + 0.0774, + 0.6612, + 0.3467, + 0.8432, + 0.7832, + 0.8472, + 0.2684, + 0.6747, + 0.7135, + 0.1028, + 0.5931, + 0.2966, + 0.5652, + 0.9138, + 0.301, + 0.1134, + 0.4064, + 0.3336, + 0.2505, + 0.2471, + 0.2678, + 0.6046, 0.2747, - 0.6088, - 0.7358, - 0.8468, - 0.6407, - 0.6076, - 0.9725, - 0.1374, - 0.1035, - 0.9343, - 0.5664, - 0.3408, - 0.4499, - 0.6139, - 0.6746, - 0.1723, - 0.7877, - 0.599, - 0.7444, - 0.0753, - 0.9036, - 0.3508, - 0.0217, - 0.4197, - 0.6051, - 0.468, - 0.6259, - 0.0785, - 0.9536, - 0.1686, - 0.7423, - 0.9967, - 0.8247, - 0.4303, - 0.4684, - 0.1768, - 0.6957, - 0.069, - 0.0328, - 0.811, - 0.9947, - 0.7385, - 0.1807, - 0.5108, - 0.4442, - 0.104, - 0.1429, - 0.3962, - 0.448, - 0.0884, - 0.168, - 0.0719, - 0.6142, - 0.5528, - 0.3085, - 0.0759, - 0.1465, - 0.8401, - 0.4463, - 0.2722, - 0.9454, - 0.1996, - 0.2445, - 0.1063, - 0.018, - 0.3235, - 0.6367, - 0.3871, - 0.9813, - 0.7376, - 0.6072, - 0.485, - 0.8037, - 0.1704, - 0.5148, - 0.7631, - 0.3699, - 0.787, - 0.1031, - 0.6113, - 0.1947, - 0.944, - 0.3375, - 0.6721, - 0.0793, - 0.8208, - 0.9104, - 0.8539, - 0.1663, - 0.2602, - 0.4204, - 0.9505, - 0.9321, - 0.3072, - 0.0639, - 0.4212, - 0.0809, - 0.0191, - 0.5945, - 0.7899, - 0.9644, - 0.9896, - 0.619, - 0.2466, - 0.984, - 0.733, - 0.2384, - 0.742, - 0.9826, - 0.7282, - 0.6611, - 0.2219, - 0.4298, - 0.4233, - 0.3443, - 0.9244, - 0.2282, - 0.4494, - 0.7202, - 0.7959, - 0.3803, - 0.8342, - 0.7346, - 0.0977, - 0.8591, - 0.4415, - 0.1001, - 0.8987, - 0.3559, + 0.4758, + 0.8032, + 0.4827, + 0.5333, + 0.5323, + 0.5268, + 0.6119, + 0.6961, + 0.8438, + 0.1276, + 0.9799, + 0.5855, + 0.6684, + 0.7372, + 0.7183, + 0.62, + 0.2488, + 0.7149, + 0.5017, + 0.2098, + 0.8195, + 0.0452, + 0.0193, + 0.8902, + 0.8659, + 0.7925, + 0.3733, + 0.5677, + 0.6803, + 0.3249, + 0.8511, + 0.1507, + 0.0449, + 0.5266, + 0.9405, + 0.9171, + 0.6427, + 0.9639, + 0.9097, + 0.7134, + 0.7903, + 0.4417, + 0.0206, + 0.01, + 0.0441, 0.3907, - 0.8338, - 0.1968, - 0.4066, - 0.7317, - 0.1564, - 0.7746, - 0.4411, - 0.7753, - 0.1297, - 0.1577, - 0.4798, - 0.9013, - 0.5135, - 0.1684, - 0.8444, - 0.2804, - 0.0827, - 0.6305, - 0.1019, - 0.777, - 0.154, - 0.5932, - 0.5152, - 0.5648, - 0.2853, - 0.436, - 0.2407, - 0.5998, - 0.6293, - 0.8364, + 0.4922, + 0.9713, + 0.5547, + 0.8893, + 0.1755, + 0.5322, + 0.9288, + 0.7621, + 0.1489, + 0.4639, + 0.8702, + 0.5112, + 0.5379, + 0.5107, + 0.287, + 0.1105, + 0.576, + 0.2713, + 0.1947, + 0.4985, + 0.0049, + 0.4207, + 0.9585, + 0.5903, 0.4081, - 0.5883, - 0.2094, - 0.3205, - 0.308, - 0.6341, - 0.4791, - 0.2093, - 0.8363, - 0.2112, - 0.0193, - 0.359, - 0.8624, - 0.487, - 0.3358, - 0.2779, - 0.5417, - 0.8484, - 0.145, - 0.2735, - 0.1389, - 0.51, - 0.0851, - 0.1055, - 0.1594, - 0.8453, - 0.8989, - 0.6634, - 0.7771, - 0.5143, - 0.6741, - 0.5647, - 0.5909, - 0.5286, - 0.6686, - 0.9094, - 0.9297, - 0.4045, - 0.1524, - 0.3497, - 0.16, - 0.2264, - 0.3713, - 0.9862, - 0.5845, - 0.3919, - 0.3274, - 0.2711, - 0.6451, - 0.1113, - 0.9874, - 0.3881, - 0.7941, - 0.3106, - 0.0785, - 0.9181, - 0.3719, - 0.4941, - 0.9269, - 0.0142, - 0.7992, - 0.7266, - 0.298, - 0.1125, - 0.3309, - 0.9903, - 0.1393, - 0.6045, - 0.4093, - 0.9538, - 0.2262, - 0.7654, - 0.053, - 0.3932, - 0.0579, - 0.1752, - 0.6114, - 0.5433, - 0.6694, - 0.9861, - 0.0038, - 0.2975, - 0.3203, - 0.5801, - 0.5246, - 0.7091, - 0.4723, - 0.1854, - 0.6405, - 0.3699, - 0.3666, - 0.0227, - 0.7974, - 0.1411, - 0.2723, - 0.8419, - 0.8262, - 0.0304, - 0.8452, - 0.8471, - 0.0727, - 0.4471, - 0.5394, - 0.7046, - 0.8863, - 0.7257, - 0.3726, + 0.2826, + 0.1729, + 0.6085, + 0.7548, + 0.5855, + 0.9489, + 0.6383, + 0.4542, + 0.0068, + 0.865, + 0.1164, + 0.4451, + 0.2873, 0.0378, - 0.8159, - 0.8285, - 0.0798, - 0.5584, - 0.2213, + 0.4376, + 0.4054, + 0.7566, + 0.3822, + 0.0265, + 0.7167, + 0.966, + 0.6713, + 0.9598, + 0.6879, + 0.8589, + 0.0561, + 0.5605, + 0.4442, + 0.1222, + 0.0319, + 0.8827, + 0.6387, + 0.1156, + 0.4758, + 0.9784, + 0.3255, + 0.5384, + 0.3221, + 0.9957, + 0.0594, + 0.8819, + 0.8149, + 0.6689, + 0.3056, + 0.0266, + 0.5533, + 0.3613, + 0.8537, + 0.6775, + 0.1722, + 0.8317, + 0.8862, + 0.491, + 0.5489, + 0.6465, + 0.3431, + 0.5009, + 0.1952, + 0.4637, + 0.5596, + 0.5078, + 0.6959, + 0.9331, + 0.8137, + 0.3245, + 0.0543, + 0.6112, + 0.6203, + 0.3566, + 0.9764, + 0.6168, + 0.8943, + 0.7821, + 0.1899, + 0.3078, + 0.2321, + 0.9604, + 0.5919, + 0.8675, + 0.8897, + 0.498, + 0.5282, + 0.0157, + 0.784, + 0.1162, + 0.6857, + 0.6714, + 0.7591, + 0.5583, + 0.0222, + 0.5208, + 0.8619, 0.076, - 0.3396, - 0.4374, - 0.3207, - 0.1891, - 0.6698, - 0.9323, - 0.6154, - 0.5812, - 0.3538, - 0.366, - 0.5868, - 0.6501, - 0.9729, - 0.0093, - 0.0853, - 0.0995, - 0.2198, - 0.3019, - 0.8848, - 0.1498, - 0.6893, - 0.7986, - 0.3456, + 0.9613, + 0.8164, 0.9815, - 0.7209, - 0.1604, - 0.9574, - 0.8428, - 0.8239, - 0.2232, - 0.5484, - 0.7128, - 0.4424, - 0.2037, - 0.9004, - 0.8699, - 0.5636, - 0.0293, - 0.6973, - 0.6957, - 0.6732, - 0.2291, - 0.0105, - 0.0932, + 0.4077, + 0.4164, + 0.1019, + 0.3381, + 0.8336, + 0.4374, + 0.6784, + 0.6824, + 0.5873, 0.3853, - 0.2042, - 0.754, - 0.3898, - 0.6132, - 0.901, - 0.9394, - 0.3266, - 0.2682, - 0.7045, - 0.7066, - 0.9139, - 0.5271, - 0.4798, - 0.3161, - 0.9359, - 0.3312, - 0.3164, - 0.4787, - 0.4123, - 0.1047, - 0.3744, - 0.3229, - 0.6485, - 0.2112, - 0.6746, - 0.3524, - 0.1894, - 0.8598, - 0.5725, - 0.3585, - 0.6578, - 0.5061, - 0.3145, - 0.6049, - 0.2848, - 0.6589, - 0.9844, - 0.9261, - 0.0304, - 0.5442, - 0.4358, - 0.0102, - 0.6866, - 0.4082, - 0.3468, - 0.0861, - 0.0372, - 0.2053, - 0.2462, - 0.159, - 0.1195, - 0.1706, - 0.7619, - 0.0633, - 0.7893, - 0.3803, - 0.0364, - 0.1115, - 0.0183, - 0.22, - 0.7476, - 0.8288, - 0.4601, - 0.1949, - 0.3424, - 0.8811, - 0.6816, - 0.8778, - 0.1631, - 0.2676, - 0.6995, - 0.3534, - 0.5044, - 0.1579, - 0.4891, - 0.0487, - 0.8667, - 0.2486, - 0.3487, - 0.9164, - 0.3593, - 0.3621, - 0.13, - 0.7248, - 0.4592, - 0.6312, - 0.9616, - 0.3299, - 0.7029, - 0.5642, - 0.2522, - 0.1551, - 0.04, - 0.4531, - 0.9469, - 0.1576, - 0.6147, - 0.2923, - 0.9207, - 0.682, - 1.0, - 0.0557, - 0.7529, - 0.9459, - 0.7644, - 0.2995, - 0.506, - 0.9739, - 0.0391, - 0.0889, - 0.4157, - 0.7015, - 0.2426, - 0.8148, - 0.3336, - 0.2257, - 0.2193, - 0.0822, - 0.2134, - 0.0038, - 0.4312, - 0.7708, - 0.5959, - 0.6054, - 0.8926, - 0.2998, - 0.9476, - 0.0339, - 0.0768, - 0.3639, - 0.2115, - 0.9175, - 0.3328, - 0.7877, - 0.86, - 0.9663, - 0.6374, - 0.7876, - 0.7779, - 0.8978, - 0.7891, - 0.121, - 0.7556, - 0.8205, - 0.7902, - 0.218, - 0.7783, - 0.6876, - 0.1519, - 0.4443, - 0.45, - 0.3608, - 0.6624, - 0.0898, - 0.1108, - 0.2661, - 0.2714, - 0.1228, - 0.1432, - 0.8394, - 0.7264, - 0.1648, - 0.7595, - 0.6618, - 0.455, - 0.1504, - 0.2937, - 0.2085, - 0.3493, - 0.2797, - 0.6029, - 0.3416, - 0.2945, - 0.1268, - 0.8691, - 0.3165, - 0.6725, - 0.8233, - 0.5982, - 0.7018, - 0.1807, - 0.3283, - 0.4192, - 0.1142, - 0.4887, - 0.2431, - 0.0725, - 0.8495, - 0.6882, - 0.4455, - 0.4058, - 0.8668, - 0.588, - 0.213, - 0.4789, + 0.2364, + 0.3173, + 0.2453, + 0.0841, + 0.2624, + 0.4895, + 0.0571, + 0.2761, + 0.7258, + 0.0999, + 0.9519, + 0.4079, + 0.093, + 0.5204, + 0.8114, 0.1627, - 0.1997, - 0.2493, - 0.8477, - 0.3681, - 0.4282, - 0.6792, - 0.8534, - 0.4645, - 0.5291, - 0.498, - 0.0556, - 0.2244, - 0.8837, - 0.6448, - 0.2191, - 0.536, - 0.9765, - 0.9302, - 0.1677, - 0.0389, - 0.149, - 0.7086, - 0.4041, - 0.161, - 0.4419, - 0.2585, - 0.9009, - 0.0791, - 0.8241, - 0.3906, - 0.2911, + 0.7583, + 0.8411, + 0.339, + 0.8613, + 0.2931, + 0.6034, + 0.8775, + 0.2159, + 0.2986, + 0.7781, + 0.2542, + 0.2, + 0.7322, + 0.0695, + 0.2962, 0.28, - 0.3576, - 0.1374, - 0.7424, - 0.9285, - 0.1084, - 0.6462, + 0.3575, + 0.65, + 0.3652, + 0.6249, + 0.9589, + 0.1417, + 0.0832, + 0.8658, + 0.7878, + 0.3852, + 0.5104, + 0.0033, + 0.3169, + 0.0408, + 0.5787, + 0.7017, + 0.1999, + 0.5593, + 0.9066, + 0.6012, + 0.7935, + 0.8401, + 0.9997, + 0.149, + 0.4941, + 0.7657, + 0.1895, + 0.5384, + 0.8737, + 0.3689, + 0.4716, + 0.7123, + 0.4441, + 0.9136, + 0.6056, + 0.9166, + 0.1435, + 0.17, + 0.6436, + 0.0775, + 0.1538, + 0.4524, + 0.8794, + 0.2011, + 0.3028, + 0.4819, + 0.0654, + 0.1075, + 0.2793, + 0.4244, + 0.2942, + 0.5606, + 0.0056, + 0.6288, + 0.7982, + 0.5202, + 0.3863, + 0.1167, + 0.5057, + 0.9419, + 0.5498, + 0.975, + 0.867, + 0.5127, + 0.1216, + 0.4357, + 0.2141, + 0.9749, + 0.8763, + 0.2229, + 0.5293, + 0.8809, + 0.098, + 0.9389, + 0.6406, + 0.2847, + 0.6291, + 0.1072, + 0.8694, + 0.2736, + 0.301, + 0.877, + 0.6156, + 0.221, + 0.8316, + 0.1119, + 0.4227, + 0.6166, + 0.7888, + 0.3556, + 0.2428, + 0.669, + 0.7906, + 0.2936, + 0.9612, + 0.4306, + 0.7987, + 0.4439, + 0.9164, + 0.7925, + 0.6492, + 0.0042, + 0.6863, + 0.5712, + 0.8409, + 0.8541, + 0.5802, + 0.8004, + 0.2484, + 0.9291, + 0.9654, + 0.3315, + 0.3091, + 0.9849, + 0.1242, + 0.7448, + 0.8318, + 0.336, + 0.1012, + 0.5268, + 0.7108, + 0.129, + 0.6464, + 0.1658, + 0.0211, + 0.0286, + 0.9742, + 0.1969, + 0.9726, + 0.3939, + 0.4314, + 0.7407, + 0.928, + 0.9618, + 0.7687, + 0.0213, + 0.5796, + 0.061, + 0.2491, + 0.4, + 0.4056, + 0.431, + 0.9472, + 0.9562, + 0.1325, + 0.586, + 0.3874, + 0.5776, + 0.955, + 0.3717, + 0.9414, + 0.9671, + 0.5208, + 0.6991, + 0.0435, + 0.9438, + 0.9294, + 0.3462, + 0.1892, + 0.8294, + 0.2467, + 0.8433, + 0.3447, + 0.4233, + 0.0379, + 0.1433, + 0.2881, + 0.2925, + 0.2131, + 0.515, + 0.3002, + 0.5972, + 0.9728, + 0.3226, + 0.1769, 0.6559, - 0.8656, - 0.4843, - 0.9129, - 0.5314, - 0.6682, - 0.6237, - 0.1226, - 0.7742, + 0.542, + 0.8319, + 0.5915, + 0.106, + 0.3334, + 0.5361, + 0.9268, + 0.4559, + 0.3696, 0.4811, - 0.3924, - 0.2106, - 0.7329, - 0.5518, - 0.4085, - 0.5253, - 0.8225, - 0.2794, - 0.48, - 0.9351, - 0.6105, - 0.6209, - 0.3349, - 0.5059, - 0.4593, - 0.4988, - 0.9036, - 0.6481, - 0.5691, - 0.7324, - 0.4892, - 0.2624, - 0.2631, - 0.5558, - 0.9342, - 0.8821, - 0.7506, - 0.3533, - 0.3739, - 0.5553, - 0.233, - 0.0426, - 0.3521, - 0.175, - 0.3377, - 0.7275, - 0.6491, - 0.3283, - 0.9648, - 0.6294, - 0.7065, - 0.2386, - 0.6367, - 0.0943, - 0.2441, - 0.4958, - 0.3979, - 0.5623, - 0.1311, - 0.5294, - 0.9995, - 0.3882, - 0.8531, - 0.8344, - 0.3874, - 0.7712, - 0.007, - 0.9557, - 0.4642, - 0.6194, - 0.6217, - 0.6079, - 0.4407, - 0.6501, - 0.1893, - 0.3937, - 0.8985, - 0.6883, - 0.4114, - 0.6395, - 0.9619, - 0.5454, - 0.3048, - 0.5033, - 0.2938, - 0.611, - 0.1331, - 0.4473, - 0.9004, - 0.9076, - 0.832, - 0.0089, - 0.2769, - 0.9197, - 0.2122, - 0.7174, - 0.5633, - 0.5156, - 0.1524, - 0.6809, - 0.4429, - 0.8404, - 0.4906, - 0.9844, - 0.7196, - 0.6433, - 0.1286, - 0.5733, - 0.1128, - 0.6274, - 0.6047, - 0.4772, - 0.2076, - 0.6052, - 0.2421, - 0.4661, - 0.6568, - 0.7872, - 0.4561, - 0.1919, - 0.4698, - 0.4765, - 0.2597, - 0.1334, - 0.8378, - 0.291, - 0.5405, - 0.7728, - 0.2215, - 0.8017, - 0.8211, - 0.2104, - 0.7493, - 0.1427, + 0.4026, + 0.3517, + 0.5555, + 0.0395, + 0.9578, + 0.119, + 0.5614, + 0.4571, + 0.2751, + 0.8591, + 0.6023, + 0.502, + 0.1966, + 0.565, + 0.1326, + 0.1515, + 0.8867, + 0.7988, + 0.8875, + 0.1185, + 0.6265, + 0.2804, + 0.915, + 0.5575, + 0.2883, + 0.17, + 0.2061, + 0.7293, + 0.6416, + 0.6107, 0.2371, - 0.2588, + 0.0438, + 0.1125, + 0.3174, + 0.4898, + 0.003, + 0.4182, + 0.8725, + 0.9493, + 0.5453, + 0.8033, + 0.0164, + 0.4918, + 0.3567, + 0.8772, + 0.8351, + 0.9073, + 0.9268, + 0.2683, 0.5922, - 0.4989, - 0.9944, - 0.2503, - 0.1964, - 0.3749, - 0.111, - 0.7769, - 0.1752, - 0.3069, - 0.8192, - 0.818, - 0.3912, - 0.8595, - 0.0774, - 0.637, - 0.8542, - 0.7773, - 0.6795, - 0.9222, - 0.7717, - 0.9724, - 0.8522, - 0.7838, - 0.588, - 0.2808, - 0.6723, - 0.8391, - 0.4608, - 0.9827, - 0.1729, - 0.8234, - 0.1868, - 0.9772, - 0.6464, - 0.6461, - 0.5694, - 0.9314, - 0.1168, - 0.4801, - 0.6006, - 0.0042, - 0.2429, - 0.8195, - 0.3167, - 0.1429, - 0.418, - 0.1128, - 0.8269, - 0.282, - 0.6841, - 0.1017, - 0.0782, - 0.9031, - 0.376, - 0.1656, - 0.4885, - 0.4839, - 0.6544, - 0.5697, - 0.9395, - 0.3282, - 0.8825, - 0.0839, - 0.9641, - 0.5866, - 0.5434, - 0.9752, - 0.9865, - 0.072, - 0.8457, - 0.285, - 0.8177, - 0.8803, - 0.5766, - 0.1131, - 0.4363, - 0.1199, - 0.8629, - 0.5028, - 0.9781, - 0.2135, - 0.7685, - 0.6299, - 0.1394, - 0.2152, - 0.3152, - 0.7728, - 0.321, - 0.7888, - 0.9002, - 0.2803, - 0.0805, - 0.365, - 0.5977, - 0.7189, - 0.5379, - 0.7403, - 0.8547, - 0.7741, - 0.3346, - 0.9444, - 0.8786, - 0.8546, - 0.5829, - 0.322, - 0.24, - 0.6491, - 0.26, - 0.328, - 0.6557, - 0.6719, - 0.301, - 0.4298, - 0.3383, - 0.3526, - 0.7517, - 0.4807, - 0.2641, - 0.3257, - 0.5329, - 0.4795, - 0.1215, - 0.6799, - 0.3228, - 0.4648, - 0.841, - 0.5332, - 0.4007, - 0.5988, - 0.0192, - 0.5705, - 0.1683, - 0.2468, - 0.7012, - 0.1876, - 0.3919, - 0.2829, - 0.7755, - 0.2274, - 0.6162, - 0.3521, - 0.3793, - 0.7572, - 0.7608, - 0.0012, - 0.2065, - 0.8619, - 0.28, - 0.4944, - 0.1068, - 0.2558, - 0.3857, - 0.5882, - 0.854, - 0.2408, - 0.9202, - 0.851, - 0.9646, - 0.6949, - 0.853, - 0.8236, - 0.2275, - 0.6252, - 0.5464, - 0.138, - 0.8279, - 0.0538, - 0.8458, - 0.4025, - 0.9937, - 0.1719, - 0.7683, - 0.8874, - 0.4447, - 0.8824, - 0.6868, - 0.7616, - 0.5841, - 0.9761, - 0.8044, - 0.8801, - 0.3198, - 0.2545, - 0.3482, + 0.8656, + 0.3948, + 0.4951, + 0.89, + 0.6052, + 0.9135, + 0.7387, + 0.9817, + 0.3809, + 0.2298, + 0.579, + 0.0311, + 0.1319, + 0.3838, + 0.4738, + 0.6248, + 0.2043, + 0.8734, 0.4322, - 0.9902, - 0.3794, - 0.8868, - 0.6868, - 0.0771, - 0.254, - 0.9634, - 0.5914, - 0.4209, - 0.9036, - 0.0784, - 0.4991, - 0.206, - 0.846, - 0.5839, - 0.72, - 0.7995, - 0.1194, - 0.2995, - 0.0733, - 0.6145, - 0.4633, - 0.1681, - 0.3793, - 0.5401, - 0.473, - 0.4219, - 0.2117, - 0.6365, - 0.0053, - 0.1654, - 0.6103, - 0.7563, - 0.9968, - 0.4191, + 0.5065, + 0.7477, + 0.1451, + 0.0371, + 0.214, + 0.6844, + 0.274, + 0.3462, + 0.4465, + 0.814, + 0.7191, + 0.4231, + 0.4213, + 0.32, + 0.8927, + 0.7996, + 0.608, + 0.3663, + 0.0113, + 0.9083, + 0.6059, + 0.5739, + 0.5358, + 0.2633, + 0.3312, + 0.104, + 0.6863, + 0.9507, + 0.787, + 0.2314, + 0.7961, + 0.9951, + 0.4674, + 0.6093, + 0.2764, + 0.1513, + 0.0909, + 0.2196, + 0.4863, + 0.9046, + 0.43, + 0.269, + 0.8644, + 0.6337, + 0.3007, + 0.6422, + 0.5386, + 0.775, + 0.4996, + 0.0212, + 0.2949, + 0.0535, + 0.3773, + 0.7096, + 0.5908, + 0.7707, + 0.6584, + 0.2193, + 0.7074, + 0.5321, + 0.5777, + 0.9561, + 0.0532, + 0.8479, + 0.753, + 0.094, + 0.5252, + 0.2933, + 0.1502, + 0.361, + 0.3784, + 0.0575, + 0.8747, + 0.9673, + 0.569, + 0.0989, + 0.822, + 0.2147, + 0.7591, + 0.4212, + 0.8279, + 0.4405, + 0.7235, 0.9102, - 0.2902, - 0.1519, - 0.9797, - 0.6519, - 0.5466, - 0.3224, - 0.385, - 0.5463, - 0.1715, - 0.67, - 0.1958, - 0.1796, - 0.2162, - 0.9691, - 0.091, - 0.7574, - 0.8543, - 0.106, - 0.3123, - 0.7538, - 0.7604, - 0.7408, - 0.2513, - 0.7139, - 0.8624, - 0.6139, - 0.403, - 0.4994, - 0.5872, - 0.8337, - 0.0993, - 0.4127, - 0.0923, - 0.8337, - 0.6767, - 0.3713, - 0.5068, - 0.659, - 0.2812, - 0.0376, - 0.5337, - 0.1808, - 0.6839, - 0.7475, - 0.6032, - 0.4739, - 0.6026, + 0.4413, + 0.1716, + 0.6705, + 0.2306, + 0.5767, + 0.6392, + 0.7992, + 0.0654, + 0.7824, + 0.4735, + 0.471, + 0.7294, + 0.1329, + 0.551, + 0.2116, + 0.9614, + 0.6, + 0.8517, + 0.142, + 0.389, + 0.8811, + 0.7043, + 0.5009, + 0.2691, + 0.5452, + 0.0601, + 0.6323, + 0.7862, + 0.6949, + 0.2002, + 0.6651, + 0.8495, + 0.3132, + 0.1552, + 0.0506, + 0.4124, + 0.7181, + 0.6396, + 0.0873, + 0.8031, + 0.5186, + 0.6822, + 0.0067, + 0.763, + 0.5327, + 0.3026, + 0.0862, + 0.0283, + 0.4026, + 0.1382, + 0.729, + 0.153, + 0.2894, + 0.545, + 0.1189, 0.6386, - 0.8906, - 0.9285, - 0.1631, - 0.3097, - 0.0847, - 0.8637, - 0.2425, - 0.0032, - 0.3057, - 0.3983, - 0.722, - 0.3439, - 0.3916, - 0.8961, - 0.2431, - 0.4823, - 0.7514, - 0.4935, - 0.1507, - 0.0082, - 0.3951, - 0.0568, - 0.3889, - 0.0077, + 0.1905, + 0.2661, + 0.3258, + 0.1039, + 0.841, + 0.7063, + 0.1977, + 0.9272, + 0.7002, + 0.7583, + 0.0418, + 0.0111, + 0.5236, + 0.2484, + 0.5384, + 0.4329, 0.4682, - 0.7221, - 0.4698, - 0.553, - 0.7309, - 0.2084, - 0.3215, - 0.836, - 0.7926, - 0.259, - 0.5021, - 0.2427, - 0.9476, - 0.8684, - 0.3299, - 0.6961, - 0.6327, - 0.2886, - 0.276, - 0.9231, - 0.3067, - 0.14, - 0.6162, - 0.666, - 0.7266, - 0.0685, + 0.3728, + 0.5348, + 0.7373, + 0.2346, + 0.8057, 0.9953, - 0.8234, - 0.2272, - 0.7375, - 0.7588, - 0.5229, - 0.1833, - 0.5819, - 0.382, - 0.5866, - 0.227, - 0.5823, - 0.0149, - 0.6739, - 0.3213, - 0.9136, - 0.6447, - 0.4975, - 0.153, - 0.2205, - 0.4878, - 0.7856, - 0.9131, - 0.1834, - 0.0157, - 0.8673, - 0.0509, - 0.7313, - 0.2396, - 0.929, - 0.1823, - 0.8218, - 0.8359, - 0.0543, - 0.5065, - 0.0648, - 0.4494, - 0.53, - 0.9592, - 0.5623, - 0.865, - 0.847, - 0.7407, - 0.8524, - 0.5575, - 0.6357, - 0.6029, - 0.3926, - 0.5744, - 0.7465, - 0.6961, - 0.6409, - 0.1573, - 0.1845, - 0.7959, - 0.4755, - 0.5251, - 0.9467, - 0.2748, - 0.753, - 0.6803, - 0.6579, - 0.5461, - 0.1143, - 0.4883, - 0.7604, - 0.9231, - 0.7486, - 0.0103, - 0.7228, - 0.6596, - 0.3742, - 0.0428, - 0.7856, - 0.6201, - 0.675, - 0.2584, - 0.644, - 0.4043, - 0.246, - 0.9327, - 0.2783, - 0.0917, - 0.3247, - 0.1569, - 0.8187, - 0.9297, - 0.9167, + 0.8671, + 0.0375, + 0.3016, + 0.2118, + 0.4908, + 0.519, + 0.521, + 0.7892, + 0.4327, + 0.6752, + 0.9834, + 0.3835, + 0.1502, + 0.2761, + 0.398, + 0.1332, + 0.995, + 0.0001, + 0.5488, + 0.9825, + 0.5703, + 0.5773, + 0.2982, + 0.1844, + 0.1872, + 0.1987, + 0.6911, + 0.8533, + 0.2637, + 0.9682, + 0.0643, + 0.4561, + 0.2364, + 0.2104, + 0.0558, + 0.7372, + 0.1778, + 0.4188, + 0.0359, + 0.6518, + 0.1844, + 0.082, + 0.9208, + 0.4254, + 0.6584, + 0.4978, + 0.2608, + 0.8292, + 0.9691, + 0.6765, + 0.5333, + 0.5844, + 0.2595, + 0.2883, + 0.2875, + 0.9868, + 0.7046, + 0.8191, + 0.7812, + 0.0962, + 0.3605, + 0.2759, + 0.7681, + 0.3234, + 0.045, + 0.5984, + 0.4331, + 0.1169, + 0.2467, + 0.0129, + 0.7721, + 0.2949, + 0.548, + 0.5897, + 0.7971, + 0.8076, + 0.6677, + 0.742, + 0.3628, + 0.996, + 0.4718, + 0.4886, + 0.6331, + 0.3387, + 0.0383, + 0.6751, + 0.5928, + 0.8993, + 0.7734, + 0.1482, + 0.0042, + 0.4168, + 0.7988, + 0.1677, + 0.432, + 0.7141, + 0.2987, + 0.8222, + 0.2823, + 0.8619, + 0.9333, + 0.3417, + 0.9567, + 0.6899, + 0.5995, + 0.2776, + 0.5737, + 0.0735, + 0.6807, + 0.6754, + 0.1396, + 0.0874, + 0.0222, + 0.0974, + 0.7494, + 0.0611, + 0.7991, + 0.3335, + 0.1188, + 0.5276, + 0.8689, 0.3224, - 0.3078, - 0.1462, - 0.6766, - 0.3493, - 0.5295, - 0.7114, - 0.8109, - 0.5068, - 0.4119, - 0.6774, - 0.6098, - 0.8333, - 0.5595, - 0.9482, - 0.0465, - 0.1556, - 0.1508, - 0.2523, - 0.1893, - 0.1003, - 0.2485, - 0.2894, - 0.9477, - 0.9996, - 0.4384, - 0.0237, - 0.7816, - 0.5325, - 0.2028, - 0.3015, - 0.9549, - 0.2702, - 0.8532, - 0.0075, - 0.8635, - 0.9228, - 0.9506, - 0.5375, - 0.2333, - 0.5124, - 0.3279, - 0.5964, - 0.6288, - 0.7608, - 0.7303, - 0.7945, - 0.7256, - 0.7483, - 0.1697, - 0.6299, - 0.1773, - 0.0972, - 0.479, - 0.8309, - 0.3812, - 0.9223, - 0.4259, - 0.072, - 0.14, - 0.238, - 0.8393, - 0.9641, - 0.6165, - 0.4938, - 0.535, - 0.735, - 0.6133, - 0.0309, - 0.5287, - 0.2936, - 0.0534, - 0.1355, - 0.0808, - 0.706, - 0.6883, - 0.2984, - 0.8929, - 0.7995, - 0.9773, - 0.5424, - 0.3384, - 0.5021, - 0.215, - 0.0185, - 0.0432, - 0.882, - 0.3083, - 0.4731, - 0.0856, - 0.7567, - 0.9355, - 0.2833, - 0.4672, + 0.3969, + 0.7086, + 0.4933, + 0.9603, + 0.7982, + 0.3875, + 0.3522, + 0.7504, + 0.9668, + 0.8971, + 0.0367, + 0.0149, + 0.8886, + 0.1891, + 0.039, + 0.6112, + 0.3732, + 0.1486, + 0.3682, + 0.3606, + 0.2686, + 0.451, + 0.0478, + 0.1796, + 0.3285, + 0.9437, + 0.6207, + 0.745, + 0.8412, + 0.2153, + 0.7782, + 0.1527, + 0.8848, + 0.0553, + 0.4988, + 0.975, + 0.8976, + 0.1732, + 0.2491, + 0.2994, + 0.1233, + 0.054, + 0.9546, + 0.8063, + 0.4829, + 0.6114, + 0.3286, + 0.6424, + 0.5241, + 0.5767, + 0.0795, + 0.5788, + 0.2654, + 0.4745, + 0.7889, + 0.5808, + 0.499, + 0.802, + 0.8729, + 0.7195, + 0.1806, + 0.3862, + 0.6565, + 0.5833, + 0.2054, + 0.4145, + 0.6194, + 0.2054, + 0.8531, + 0.1163, + 0.4342, + 0.5242, + 0.8782, + 0.7066, + 0.6226, + 0.4715, + 0.216, + 0.255, + 0.2695, + 0.3118, + 0.3978, + 0.3447, + 0.2958, + 0.8654, + 0.4418, + 0.4911, + 0.092, + 0.319, + 0.1653, + 0.2318, + 0.5574, + 0.5094, + 0.173, + 0.4854, + 0.4291, + 0.0265, + 0.1708, + 0.9415, + 0.7618, + 0.4198, + 0.3861, + 0.5228, + 0.1456, + 0.7713, + 0.3862, + 0.9738, + 0.9032, + 0.4767, + 0.456, + 0.3834, + 0.1861, + 0.3427, + 0.1569, + 0.0404, + 0.1956, + 0.9358, + 0.0828, + 0.4288, + 0.2621, + 0.5938, + 0.884, + 0.7645, + 0.2932, + 0.6497, + 0.0542, + 0.4335, + 0.8586, + 0.8365, + 0.8082, + 0.8653, + 0.0772, + 0.3253, + 0.4604, + 0.5149, + 0.0538, + 0.9181, + 0.5938, + 0.6902, + 0.7793, + 0.7554, + 0.649, + 0.8113, + 0.4492, + 0.2308, 0.1437, - 0.5845, - 0.9488, - 0.7647, - 0.023, - 0.1664, - 0.5024, - 0.3128, - 0.6118, - 0.2247, - 0.7049, - 0.9502, - 0.5786, - 0.0416, - 0.8553, - 0.176, - 0.5524, - 0.1194, - 0.9987, - 0.8666, - 0.4743, - 0.2132, - 0.9464, - 0.7366, - 0.7268, - 0.0037, - 0.2565, - 0.4098, - 0.9244, - 0.0715, - 0.3884, - 0.0989, - 0.2384, - 0.2584, - 0.1441, - 0.6271, - 0.5321, - 0.3178, - 0.4477, - 0.1965, - 0.9492, - 0.1322, - 0.4074, - 0.069, - 0.6126, - 0.4663, - 0.1391, - 0.9889, - 0.5839, - 0.87, - 0.4137, - 0.3261, - 0.2007, + 0.1122, + 0.9789, + 0.7847, + 0.3543, + 0.7062, + 0.445, + 0.3402, + 0.8669, + 0.8535, + 0.1955, + 0.3383, + 0.6116, + 0.0681, + 0.0113, + 0.4358, + 0.2157, + 0.6149, + 0.6722, + 0.0996, + 0.116, + 0.9362, + 0.4596, + 0.3469, + 0.7822, + 0.9936, + 0.5014, + 0.481, + 0.8712, + 0.659, + 0.6336, + 0.877, + 0.2914, + 0.5172, + 0.8189, + 0.8851, + 0.6197, + 0.3242, + 0.9242, + 0.3155, + 0.222, + 0.9635, + 0.6378, + 0.9264, + 0.6062, + 0.8406, + 0.4514, + 0.1027, + 0.8549, + 0.8123, + 0.5574, + 0.7527, + 0.9672, + 0.1392, + 0.0549, + 0.8057, + 0.9674, + 0.9659, + 0.8877, 0.9431, + 0.4311, + 0.4503, + 0.3899, + 0.2977, + 0.2824, + 0.7418, + 0.7854, + 0.43, + 0.1656, + 0.9399, + 0.2239, + 0.0133, + 0.3774, + 0.4766, + 0.8001, + 0.8519, + 0.2862, + 0.0461, + 0.1597, + 0.9145, + 0.2009, + 0.693, + 0.0983, + 0.124, + 0.6446, + 0.4985, + 0.5229, + 0.5175, + 0.3347, + 0.1683, + 0.1895, + 0.187, + 0.013, + 0.1114, + 0.6482, + 0.6349, + 0.9105, + 0.5779, + 0.8612, + 0.1383, + 0.3359, + 0.418, + 0.9105, + 0.067, + 0.2677, + 0.4798, + 0.1355, + 0.7196, + 0.955, + 0.9443, + 0.381, + 0.7087, + 0.7951, + 0.1836, + 0.5488, + 0.6864, + 0.6032, + 0.9762, + 0.2202, + 0.6702, + 0.6219, + 0.2303, + 0.9858, + 0.4928, + 0.1233, + 0.7146, + 0.4589, + 0.2453, + 0.8601, + 0.2495, + 0.0779, 0.8691, - 0.1929, - 0.237, - 0.4631, - 0.5966, + 0.7232, + 0.2838, + 0.8461, + 0.7661, + 0.0344, + 0.1507, + 0.051, + 0.2757, + 0.9618, + 0.1464, + 0.16, + 0.2336, + 0.3242, + 0.9036, + 0.0078, + 0.9551, + 0.8761, + 0.5682, + 0.8661, + 0.4415, + 0.9183, + 0.3012, + 0.035, + 0.7407, + 0.3165, + 0.7012, + 0.775, + 0.0234, + 0.0359, + 0.475, + 0.8434, + 0.1436, + 0.832, + 0.2934, + 0.3038, + 0.182, + 0.4503, + 0.073, + 0.2943, + 0.2833, + 0.4486, + 0.563, + 0.2285, + 0.3857, + 0.3395, + 0.3866, + 0.8953, + 0.1915, + 0.9343, + 0.7152, + 0.1071, + 0.5565, + 0.4169, + 0.1606, + 0.2519, + 0.0095, 0.9075, - 0.319, - 0.2472, - 0.5406, - 0.3831, - 0.7597, - 0.3761, - 0.4495, - 0.9976, - 0.284, - 0.5124, - 0.9588, - 0.9154, - 0.2478, - 0.855, - 0.9909, - 0.5789, - 0.6448, - 0.5704, - 0.5217, - 0.4777, - 0.535, - 0.7028, - 0.7746, - 0.7912, - 0.8594, - 0.8439, - 0.413, - 0.013, + 0.3833, + 0.0884, + 0.2864, + 0.7323, + 0.63, + 0.5125, + 0.9759, + 0.4579, + 0.2591, + 0.4676, + 0.8267, + 0.0466, + 0.4156, + 0.5036, + 0.9334, + 0.3464, + 0.7097, + 0.3926, + 0.5516, + 0.1878, + 0.4666, + 0.4674, + 0.0978, + 0.4865, + 0.6696, + 0.275, + 0.9408, + 0.7426, + 0.2456, + 0.6843, + 0.9131, + 0.4473, + 0.9099, + 0.3898, + 0.2703, + 0.0277, + 0.6404, + 0.3462, + 0.1829, + 0.5134, + 0.6551, + 0.7337, + 0.0112, + 0.7573, + 0.6569, + 0.2071, + 0.0333, + 0.0488, + 0.1593, + 0.801, + 0.857, + 0.1144, + 0.0006, + 0.7649, + 0.437, + 0.3196, + 0.4401, + 0.6131, + 0.7979, + 0.1536, + 0.7774, + 0.3989, + 0.3122, + 0.3111, + 0.1691, + 0.2886, + 0.7831, + 0.4406, + 0.2447, + 0.6428, + 0.4241, + 0.2575, + 0.1432, + 0.8375, + 0.9094, + 0.6315, + 0.878, + 0.7469, + 0.2103, + 0.1275, + 0.6615, + 0.9162, + 0.2067, + 0.7615, + 0.9393, + 0.3226, + 0.7612, + 0.6734, + 0.6824, + 0.9101, + 0.9202, + 0.5663, + 0.8904, + 0.7441, + 0.425, + 0.3906, + 0.5366, + 0.162, + 0.2192, + 0.9704, + 0.1927, + 0.6907, + 0.5301, + 0.786, + 0.1428, + 0.4891, + 0.5479, + 0.3627, + 0.1144, + 0.3623, + 0.1457, + 0.0533, + 0.0055, + 0.1953, + 0.6792, + 0.024, + 0.3457, + 0.7461, + 0.6233, + 0.0024, + 0.2718, + 0.9636, + 0.4383, + 0.6205, + 0.1935, + 0.1614, + 0.4236, + 0.7899, + 0.3465, + 0.5091, + 0.4425, + 0.3698, + 0.3811, + 0.838, + 0.4897, + 0.5913, + 0.7328, + 0.2646, + 0.0091, + 0.5599, + 0.486, + 0.244, + 0.881, + 0.8676, + 0.9312, + 0.9062, + 0.4404, + 0.3197, + 0.6865, + 0.5444, + 0.1525, + 0.8029, + 0.6095, + 0.4686, + 0.3173, + 0.7661, + 0.382, + 0.222, + 0.5667, + 0.8293, + 0.0688, + 0.1132, + 0.4553, + 0.2412, + 0.1895, + 0.5934, + 0.4122, + 0.4981, + 0.9854, + 0.2012, + 0.0553, + 0.5468, + 0.9394, + 0.0273, + 0.2106, + 0.9132, + 0.7841, + 0.6678, + 0.5837, + 0.0041, + 0.2848, + 0.299, + 0.6708, + 0.5895, + 0.1595, + 0.9562, + 0.3195, + 0.158, + 0.2501, + 0.6388, + 0.1545, + 0.8595, + 0.5992, + 0.8527, + 0.1883, + 0.7568, + 0.7742, + 0.9055, + 0.7107, + 0.326, + 0.9509, + 0.6927, + 0.2483, + 0.3102, + 0.3032, + 0.9143, + 0.8214, + 0.2963, + 0.0742, + 0.1106, + 0.8403, + 0.8211, + 0.0258, + 0.161, + 0.601, + 0.5574, + 0.3282, + 0.8232, + 0.5686, + 0.7566, + 0.3609, + 0.9985, + 0.6581, + 0.4918, + 0.9029, + 0.0265, + 0.6501, + 0.3617, + 0.4627, + 0.9306, + 0.0163, + 0.2324, + 0.4429, + 0.8931, + 0.0327, 0.4012, - 0.0223, - 0.8155, - 0.3625, - 0.8782, - 0.433, - 0.1381, - 0.2669, - 0.5011, - 0.8735, - 0.9324, - 0.8461, - 0.8251, + 0.76, + 0.9522, + 0.731, + 0.8712, + 0.1383, + 0.1009, + 0.6155, + 0.6957, + 0.4288, + 0.2315, + 0.3269, + 0.8418, + 0.7552, + 0.2761, + 0.5619, + 0.4143, + 0.4203, + 0.1605, + 0.5098, + 0.4369, + 0.0491, + 0.9907, + 0.1925, + 0.672, + 0.7933, + 0.1514, + 0.3026, + 0.6745, + 0.7399, + 0.0152, + 0.3961, + 0.0998, + 0.7097, 0.7296, - 0.1346, - 0.684, - 0.0576, - 0.2996, - 0.7075, - 0.8212, - 0.6073, - 0.0268, - 0.6146, - 0.5147, - 0.9402, - 0.5935, - 0.0258, - 0.1355, - 0.2648, - 0.7477, - 0.9244, - 0.8553, - 0.1346, - 0.9775, - 0.1865, - 0.8703, - 0.3933, - 0.0743, - 0.0103, - 0.7453, - 0.1392, - 0.3962, - 0.1096, - 0.8037, - 0.8934, - 0.8687, - 0.9792, - 0.8238, - 0.2544, - 0.9403, - 0.6172, - 0.9882, - 0.0243, + 0.6108, + 0.1335, + 0.1792, + 0.3309, + 0.121, + 0.8269, + 0.9823, + 0.0429, + 0.5947, + 0.4139, + 0.8843, + 0.7419, + 0.088, + 0.6535, + 0.8755, + 0.987, + 0.1425, + 0.7982, + 0.4307, + 0.799, + 0.5772, + 0.7367, + 0.7687, + 0.7661, + 0.1941, + 0.3494, + 0.3661, + 0.7347, + 0.8783, + 0.8206, + 0.1423, + 0.1129, + 0.9284, + 0.5863, + 0.1333, + 0.2513, + 0.7785, + 0.5917, + 0.1897, + 0.0389, + 0.9718, + 0.1575, + 0.3299, + 0.0913, + 0.7395, + 0.1167, + 0.2809, + 0.9331, + 0.2029, + 0.3464, + 0.7111, + 0.3874, + 0.67, + 0.4417, + 0.0367, + 0.8596, + 0.9665, + 0.4306, + 0.4412, + 0.5296, + 0.4542, + 0.4168, + 0.6201, + 0.9501, + 0.2476, + 0.5931, + 0.8009, + 0.3406, + 0.0151, + 0.4696, + 0.6826, + 0.2644, + 0.7799, + 0.9707, + 0.7055, + 0.1232, + 0.0222, + 0.0943, + 0.1368, + 0.1349, + 0.1578, + 0.8262, + 0.8769, + 0.3824, + 0.2671, + 0.5276, + 0.0731, + 0.2486, + 0.9068, + 0.8267, + 0.0532, + 0.4044, + 0.7894, + 0.2776, + 0.7592, + 0.0923, + 0.8412, + 0.0083, + 0.3757, + 0.9794, + 0.0319, + 0.9388, + 0.1541, + 0.893, + 0.8283, + 0.9131, + 0.3209, + 0.0315, + 0.9072, + 0.317, + 0.5338, + 0.0769, + 0.0876, + 0.8817, + 0.6206, + 0.233, + 0.7074, + 0.4907, + 0.3027, + 0.0646, + 0.3668, + 0.0527, + 0.3826, + 0.9928, + 0.7644, + 0.6224, + 0.1508, + 0.5098, + 0.7729, + 0.4256, + 0.4764, + 0.2938, + 0.9779, + 0.4759, + 0.8585, + 0.1879, + 0.0972, + 0.8991, + 0.0416, + 0.9375, + 0.7586, + 0.9179, + 0.808, + 0.4507, + 0.6171, + 0.2152, + 0.437, + 0.3312, + 0.1105, + 0.1255, + 0.1893, + 0.5688, + 0.8908, + 0.8519, + 0.2836, + 0.6183, + 0.2513, + 0.7293, + 0.3406, 0.7705, - 0.6541, - 0.9008, - 0.5046, - 0.1278, - 0.9143, - 0.852, - 0.3847, - 0.5918, - 0.9261, - 0.746, - 0.2849, - 0.6915, - 0.1464, - 0.9268, - 0.8366, - 0.5248, - 0.4406, - 0.4651, - 0.1259, - 0.8799, - 0.6475, - 0.81, - 0.0136, - 0.6815, - 0.3981, - 0.0672, - 0.467, - 0.6452, - 0.6202, - 0.2922, - 0.2444, - 0.7515, - 0.6138, - 0.2205, - 0.1025, - 0.7056, - 0.0542, + 0.7126, + 0.6345, + 0.3146, + 0.9248, + 0.3678, + 0.4249, + 0.3675, + 0.8331, + 0.7782, + 0.9179, + 0.8067, + 0.3208, + 0.2747, + 0.8204, + 0.8596, + 0.3531, + 0.4634, + 0.6562, + 0.3796, + 0.7523, 0.4912, - 0.5151, - 0.5636, - 0.0427, - 0.3865, - 0.0141, - 0.5379, - 0.1122, - 0.6536, - 0.1358, - 0.1154, - 0.1779, - 0.3509, - 0.8896, - 0.5383, - 0.0889, - 0.4697, - 0.816, - 0.0211, - 0.7062, - 0.9269, - 0.8604, - 0.3693, - 0.524, - 0.2815, - 0.6829, - 0.7751, - 0.4379, - 0.3398, - 0.6065, - 0.9289, - 0.667, - 0.9819, - 0.2217, - 0.977, - 0.3132, - 0.68, - 0.9161, - 0.8856, - 0.1407, - 0.0001, - 0.6726, - 0.4606, - 0.4693, - 0.3804, - 0.8337, - 0.3935, - 0.5493, - 0.5534, - 0.6907, - 0.0506, - 0.9956, - 0.3508, - 0.1768, - 0.2734, - 0.4827, - 0.8209, - 0.968, - 0.0485, - 0.2458, - 0.7853, - 0.6769, - 0.2584, - 0.9876, - 0.2486, - 0.362, - 0.0873, - 0.8458, - 0.958, - 0.2053, - 0.3566, - 0.3132, - 0.6128, - 0.203, - 0.5681, - 0.4601, - 0.5642, - 0.077, - 0.3562, - 0.8966, - 0.3783, - 0.2478, - 0.9735, - 0.2962, - 0.8537, - 0.671, - 0.2833, - 0.5192, - 0.2771, - 0.7518, - 0.1809, - 0.8478, - 0.3626, - 0.9281, - 0.9358, - 0.9737, - 0.7674, - 0.016, - 0.5747, - 0.6022, - 0.6148, - 0.9344, - 0.8105, - 0.1344, - 0.3618, - 0.9394, - 0.6248, - 0.1372, - 0.5685, - 0.8788, - 0.2107, - 0.7539, - 0.2844, - 0.5475, - 0.5346, - 0.9124, - 0.5427, - 0.4966, - 0.3017, - 0.9189, - 0.1587, - 0.0856, - 0.3885, - 0.248, - 0.9293, - 0.8424, - 0.6665, - 0.5232, - 0.9423, - 0.0509, - 0.3343, - 0.2574, - 0.6178, - 0.9844, - 0.6817, - 0.5716, - 0.9605, - 0.7169, - 0.6674, - 0.8794, - 0.4079, - 0.8752, - 0.7732, - 0.131, - 0.6999, - 0.3433, - 0.3461, - 0.6111, - 0.6828, - 0.5496, - 0.4665, - 0.1517, - 0.3025, - 0.607, - 0.5658, - 0.2139, - 0.7306, - 0.5523, - 0.7582, - 0.0384, - 0.3289, - 0.9746, - 0.3254, - 0.8333, + 0.152, + 0.3221, + 0.4905, + 0.9316, + 0.2671, + 0.1803, + 0.6567, + 0.1314, + 0.8825, + 0.8288, + 0.1918, + 0.1794, + 0.1288, + 0.8753, + 0.6668, + 0.8102, + 0.7735, + 0.8946, + 0.5268, + 0.6222, + 0.8379, + 0.7342, + 0.2189, + 0.3516, + 0.7942, + 0.9632, + 0.4918, + 0.5588, 0.5517, - 0.7642, - 0.2516, - 0.9495, - 0.1931, - 0.644, - 0.3463, - 0.6562, - 0.4982, - 0.543, - 0.5135, - 0.7304, - 0.7956, - 0.5435, - 0.8305, - 0.1024, - 0.3906, - 0.7773, - 0.4098, - 0.9886, - 0.3741, - 0.281, - 0.3245, - 0.8998, - 0.1612, - 0.9863, - 0.8996, - 0.9824, - 0.5624, - 0.6018, - 0.3257, - 0.0582, - 0.2685, - 0.287, - 0.609, - 0.8795, - 0.7807, - 0.2698, - 0.2187, - 0.3968, - 0.1, - 0.2804, - 0.1099, - 0.0783, - 0.3925, + 0.9298, + 0.6301, + 0.2521, + 0.3139, + 0.8434, + 0.2357, + 0.6505, + 0.7412, + 0.1175, + 0.2202, + 0.0994, + 0.2808, + 0.733, + 0.0388, + 0.4571, 0.3781, - 0.3706, - 0.5769, - 0.5012, - 0.6941, - 0.7999, - 0.9656, - 0.6676, - 0.715, - 0.5245, - 0.6508, - 0.1275, - 0.1918, - 0.1514, - 0.8543, - 0.3285, - 0.3762, - 0.8956, - 0.4651, + 0.8696, + 0.8225, + 0.5418, + 0.4162, + 0.3058, + 0.7502, + 0.4024, + 0.5494, + 0.0019, + 0.8131, + 0.0598, + 0.5499, + 0.7379, + 0.7846, + 0.7938, + 0.5103, + 0.4276, + 0.7648, + 0.7881, + 0.2372, + 0.9409, + 0.6025, + 0.5759, + 0.7636, + 0.9027, + 0.3627, + 0.9522, + 0.6755, + 0.8473, + 0.2701, + 0.8421, + 0.3224, + 0.2332, + 0.6025, + 0.9745, + 0.1519, + 0.1813, + 0.7383, + 0.6922, + 0.0346, 0.5223, - 0.9996, - 0.1155, - 0.8309, - 0.5195, - 0.6567, - 0.5649, - 0.6003, - 0.8379, - 0.6886, - 0.9338, - 0.2149, - 0.7918, - 0.2817, - 0.944, - 0.4374, - 0.8745, - 0.8274, - 0.0285, - 0.3099, - 0.1276, - 0.9947, - 0.711, - 0.6635, - 0.5669, - 0.7318, - 0.8231, - 0.4696, - 0.7567, - 0.208, - 0.4123, - 0.6696, + 0.9937, + 0.4939, + 0.3867, + 0.4088, + 0.7038, + 0.5426, + 0.2867, + 0.2914, + 0.8765, + 0.0417, + 0.9781, + 0.466, + 0.3312, + 0.9529, + 0.594, + 0.2514, + 0.6192, + 0.9102, + 0.3058, + 0.7066, + 0.2896, + 0.6068, + 0.0589, + 0.9941, + 0.9645, + 0.8173, + 0.8695, + 0.4142, + 0.9541, + 0.2724, + 0.9625, + 0.9737, + 0.8689, + 0.194, + 0.927, + 0.4535, + 0.1665, + 0.1004, + 0.0267, + 0.6487, + 0.0098, + 0.3459, + 0.1591, + 0.8104, + 0.3734, + 0.5743, + 0.0195, + 0.5693, + 0.4029, + 0.7477, + 0.6115, + 0.2656, + 0.1362, + 0.0579, + 0.7333, + 0.1171, + 0.9709, + 0.8225, + 0.668, + 0.3825, + 0.2972, 0.4579, - 0.3278, - 0.2956, - 0.4726, - 0.6266, - 0.0793, - 0.5453, - 0.7234, - 0.4998, - 0.7465, - 0.5385, - 0.0875, - 0.1327, - 0.4078, - 0.7224, - 0.1684, - 0.5765, - 0.4802, - 0.5262, - 0.2653, - 0.372, - 0.9024, - 0.8401, - 0.3321, - 0.5842, - 0.9669, - 0.8483, - 0.5282, - 0.0873, - 0.7812, - 0.5829, - 0.849, - 0.9203, - 0.3687, - 0.2829, - 0.4883, - 0.3043, - 0.3438, - 0.8949, - 0.1274, - 0.6777, - 0.2291, - 0.9994, - 0.6393, - 0.2465, - 0.7172, - 0.1678, - 0.6545, - 0.9013, - 0.7316, - 0.1309, - 0.0064, - 0.6175, - 0.1566, - 0.4326, - 0.0604, - 0.9699, + 0.8983, + 0.2375, + 0.2995, + 0.6591, + 0.6582, + 0.6384, + 0.5962, + 0.5077, + 0.3919, + 0.5181, + 0.2442, + 0.3092, + 0.7546, + 0.9261, + 0.9316, + 0.5718, + 0.7698, + 0.843, + 0.5567, + 0.332, + 0.5792, + 0.4476, + 0.5139, + 0.702, + 0.8002, + 0.7573, + 0.5962, + 0.2419, + 0.4166, + 0.8572, + 0.4278, + 0.7814, + 0.6241, + 0.0623, + 0.9343, + 0.5187, + 0.404, + 0.3223, + 0.0349, + 0.7531, + 0.548, + 0.4759, + 0.771, + 0.352, + 0.7417, + 0.5024, + 0.4361, + 0.5979, + 0.4324, + 0.8393, + 0.8909, + 0.9836, + 0.7263, + 0.7017, + 0.435, + 0.7877, + 0.8104, + 0.0142, + 0.7706, + 0.7129, + 0.4312, + 0.138, + 0.338, + 0.8801, + 0.4417, + 0.7049, + 0.4254, + 0.4493, + 0.1266, + 0.0257, + 0.6532, + 0.8999, + 0.8242, + 0.3784, + 0.0524, + 0.0542, + 0.0994, + 0.0868, + 0.4949, + 0.3825, + 0.2678, + 0.1639, + 0.8628, + 0.7394, + 0.7483, + 0.8731, + 0.9212, + 0.8509, + 0.0533, + 0.7556, + 0.0622, + 0.3582, + 0.1707, + 0.8638, + 0.1549, + 0.2521, + 0.9958, + 0.4851, + 0.2584, + 0.1737, + 0.8492, + 0.6326, + 0.3424, + 0.4027, + 0.907, + 0.1001, + 0.7149, + 0.9011, + 0.1655, + 0.0816, + 0.7506, + 0.3361, + 0.7714, + 0.5725, + 0.7399, + 0.0514, + 0.7582, + 0.8383, + 0.1246, + 0.0208, + 0.9404, + 0.9092, + 0.0257, + 0.5391, + 0.7582, + 0.1095, + 0.4774, + 0.0998, + 0.1023, + 0.2879, + 0.9401, + 0.4472, + 0.9442, + 0.7648, + 0.1446, + 0.1653, + 0.6755, + 0.9324, + 0.8459, + 0.6553, + 0.8282, + 0.3747, + 0.2456, + 0.1846, + 0.1754, + 0.2261, + 0.5201, + 0.3029, + 0.6756, + 0.5712, + 0.2208, + 0.6543, + 0.4442, + 0.5929, + 0.1572, + 0.999, + 0.7021, + 0.9208, + 0.9442, + 0.0618, + 0.0176, + 0.2778, + 0.1562, + 0.2061, + 0.3873, + 0.9015, + 0.8222, + 0.8141, + 0.6005, + 0.4923, + 0.8823, + 0.4941, + 0.2172, + 0.9639, + 0.7285, + 0.2733, + 0.3476, + 0.8774, + 0.8782, + 0.8666, + 0.4009, + 0.1524, + 0.4238, + 0.1933, + 0.1811, + 0.6725, + 0.7117, + 0.0563, + 0.7127, + 0.0322, + 0.9896, + 0.5441, + 0.5394, + 0.2416, + 0.042, + 0.2924, + 0.8379, + 0.4658, + 0.8953, + 0.6488, + 0.7803, + 0.4752, + 0.2973, + 0.0407, + 0.7577, + 0.4174, + 0.3174, + 0.3259, + 0.3348, + 0.106, + 0.007, + 0.5345, + 0.7538, + 0.3411, + 0.8365, + 0.5562, + 0.5496, + 0.8467, + 0.7987, + 0.4429, + 0.9567, + 0.2676, + 0.335, + 0.5544, + 0.013, + 0.8789, + 0.5584, + 0.9682, + 0.3768, + 0.8456, + 0.3229, + 0.9076, + 0.8995, + 0.5386, + 0.0314, + 0.327, + 0.5123, + 0.4292, + 0.1858, + 0.599, + 0.197, + 0.2371, + 0.9831, + 0.7854, + 0.4838, + 0.4251, + 0.6048, + 0.5337, + 0.631, + 0.1801, + 0.9655, + 0.8041, + 0.5432, + 0.1368, + 0.8227, + 0.0103, + 0.6263, + 0.2071, + 0.6503, + 0.4828, + 0.3105, + 0.3526, + 0.7888, + 0.1048, + 0.8963, + 0.4819, + 0.8603, + 0.5157, + 0.2251, + 0.6323, + 0.4848, + 0.7238, + 0.9677, + 0.5663, 0.0172, + 0.8865, + 0.5566, + 0.2071, + 0.1258, + 0.1782, + 0.9804, + 0.6124, + 0.034, + 0.5332, + 0.0443, + 0.4467, + 0.0129, + 0.1969, + 0.5055, + 0.4493, + 0.0665, + 0.5253, + 0.184, + 0.4595, + 0.3135, + 0.8191, + 0.7711, + 0.92, + 0.2062, 0.6351, + 0.5026, + 0.8945, + 0.9361, + 0.2189, + 0.8308, + 0.9596, + 0.0545, + 0.8069, + 0.7282, + 0.9394, + 0.7421, + 0.4372, + 0.2038, + 0.0676, + 0.5951, + 0.7196, + 0.95, + 0.3684, + 0.0022, + 0.646, + 0.1995, + 0.7782, + 0.1443, + 0.1809, + 0.7992, + 0.4649, + 0.3545, + 0.4826, + 0.2409, + 0.9445, + 0.2427, + 0.4528, + 0.3276, + 0.7799, + 0.362, + 0.83, + 0.6353, + 0.3257, + 0.5717, + 0.8571, + 0.1217, + 0.5821, + 0.4669, + 0.0682, + 0.0429, + 0.944, + 0.2865, + 0.6673, + 0.7668, + 0.6753, + 0.5109, + 0.7027, + 0.8995, + 0.507, + 0.3552, + 0.9046, + 0.589, + 0.5779, + 0.3613, + 0.6598, + 0.2569, + 0.5493, + 0.8905, + 0.0289, + 0.1166, + 0.4327, + 0.8509, + 0.2873, + 0.4085, + 0.9515, + 0.6495, + 0.865, + 0.6581, + 0.5664, + 0.1849, + 0.0615, + 0.3108, + 0.7119, + 0.6433, + 0.0415, + 0.3661, + 0.5528, + 0.6478, + 0.5524, + 0.491, + 0.4911, + 0.3347, + 0.7202, + 0.2673, 0.9041, - 0.1098, - 0.5056, - 0.2836, - 0.4995, - 0.9461, - 0.9979, - 0.8268, - 0.4077, - 0.4797, - 0.2248, - 0.9129, - 0.3103, - 0.7672, - 0.7303, - 0.241, - 0.5566, - 0.6046, - 0.2746, - 0.9808, - 0.1163, - 0.4768, - 0.5567, - 0.9384, - 0.7858, - 0.7117, - 0.4557, - 0.4462, - 0.0949, - 0.8453, - 0.8445, - 0.0492, - 0.9686, - 0.7832, - 0.9089, - 0.2449, - 0.6099, - 0.3829, - 0.9657, - 0.1882, - 0.8274, - 0.6669, - 0.543, - 0.0988, - 0.0599, - 0.4628, - 0.6697, - 0.7718 + 0.337, + 0.1663, + 0.3619, + 0.0498, + 0.1471, + 0.3402, + 0.5115, + 0.7083, + 0.0752, + 0.9295, + 0.9861, + 0.5561, + 0.8486, + 0.6225, + 0.6807, + 0.1071, + 0.347, + 0.1797, + 0.8457, + 0.9526, + 0.088, + 0.7661, + 0.1262, + 0.4991, + 0.0809, + 0.1794, + 0.5653, + 0.1894, + 0.2867, + 0.5424, + 0.0382, + 0.2984, + 0.3593, + 0.6288, + 0.6888, + 0.9831, + 0.7246, + 0.2275, + 0.0032, + 0.2626, + 0.7462, + 0.4572, + 0.3879, + 0.234, + 0.7249, + 0.2717, + 0.5515, + 0.5004, + 0.6304, + 0.4285, + 0.7427, + 0.084, + 0.637, + 0.1498, + 0.5408, + 0.4783, + 0.2142, + 0.7769, + 0.6131, + 0.6731, + 0.0422, + 0.211, + 0.0911, + 0.0424, + 0.2604, + 0.5025, + 0.2047, + 0.6516, + 0.7312, + 0.2443, + 0.4572, + 0.4284, + 0.1523, + 0.0436, + 0.6854, + 0.1203, + 0.6989, + 0.7096, + 0.0984, + 0.9319, + 0.3253, + 0.8251, + 0.5127, + 0.4101, + 0.7386, + 0.5868, + 0.8204, + 0.3387, + 0.0324, + 0.0431, + 0.6178, + 0.415, + 0.2864, + 0.8563, + 0.1244, + 0.6855, + 0.2472, + 0.095, + 0.1644, + 0.4213, + 0.0026, + 0.607, + 0.1746, + 0.2327, + 0.9207, + 0.7669, + 0.9441, + 0.9516, + 0.8763, + 0.1838, + 0.7526, + 0.1303, + 0.4176, + 0.006, + 0.4565, + 0.9212, + 0.613, + 0.2081, + 0.9932, + 0.1714, + 0.4528, + 0.0691, + 0.2754, + 0.2797, + 0.321, + 0.7972, + 0.5907, + 0.792, + 0.5881, + 0.905, + 0.9178, + 0.1181, + 0.2585, + 0.9855, + 0.1356, + 0.8293, + 0.1113, + 0.473, + 0.4559, + 0.7074, + 0.297, + 0.6392, + 0.9046, + 0.0975, + 0.5756, + 0.634, + 0.8118, + 0.4536, + 0.7922, + 0.6278, + 0.982, + 0.8562, + 0.9901, + 0.2626, + 0.69, + 0.5883, + 0.0474, + 0.9188, + 0.9127, + 0.4167, + 0.8619, + 0.7483, + 0.8071, + 0.7227, + 0.0487, + 0.3603, + 0.2698, + 0.214, + 0.1797, + 0.2448, + 0.2598, + 0.4673, + 0.399, + 0.8173, + 0.9346, + 0.227, + 0.7984, + 0.3276, + 0.2526, + 0.0407, + 0.6282, + 0.3669, + 0.1696, + 0.2416, + 0.4609, + 0.8986, + 0.1637, + 0.8442, + 0.6172, + 0.0346, + 0.8989, + 0.2353, + 0.4666, + 0.3676, + 0.7008, + 0.5736, + 0.3891, + 0.277, + 0.3935, + 0.5259, + 0.6457, + 0.3339, + 0.9779, + 0.5699, + 0.2894, + 0.521, + 0.1901, + 0.8491, + 0.1733, + 0.6319, + 0.5694, + 0.7087, + 0.9706, + 0.0978, + 0.0375, + 0.6411, + 0.6111, + 0.2881, + 0.2486, + 0.0956, + 0.852, + 0.5631, + 0.9716, + 0.8757, + 0.309, + 0.3234, + 0.0634, + 0.7218, + 0.8045, + 0.8264, + 0.6347, + 0.5099, + 0.8592, + 0.3586, + 0.9517, + 0.0663, + 0.1927, + 0.5004, + 0.6995, + 0.068, + 0.9731, + 0.4034, + 0.0297, + 0.392, + 0.6918, + 0.1213, + 0.1835, + 0.0145, + 0.8501, + 0.5106, + 0.8855, + 0.8, + 0.479, + 0.426, + 0.5753, + 0.3772, + 0.5234, + 0.2093, + 0.0892, + 0.9174, + 0.2998, + 0.5526, + 0.2167, + 0.5087, + 0.2205, + 0.1154, + 0.3048, + 0.8676, + 0.0852, + 0.6662, + 0.3575, + 0.7599, + 0.0933, + 0.2878, + 0.2126 ], "timestep": 1, "start_date": [ diff --git a/scripts/bsdf/klemsfull.xml b/scripts/bsdf/klemsfull.xml new file mode 100644 index 0000000..9d8b7ff --- /dev/null +++ b/scripts/bsdf/klemsfull.xml @@ -0,0 +1,84856 @@ + + + +System +BSDF + + + + Name + Manufacturer + 0.000 + 0.001 + 0.001 + Other + + + +xf -t -0.000500 -0.000500 0 +# The following was converted from RADIANCE scene input +o Untitled +# Begin conversion from: /tmp/genBSDF.IV4O28/device.rad +# xform -e +o +o bottom +v v0 = + p 0 0 0 +v v1 = + p 0 0.001 0 +v v2 = + p 0.001 0.001 0 +v v3 = + p 0.001 0 0 +f v0 v1 v2 v3 +# End conversion from: /tmp/genBSDF.IV4O28/device.rad +o +# End of data converted from RADIANCE scene input +xf + + + + Columns + + LBNL/Klems Full + + 0 + 1 + + 0 + 5 + + + + 10 + 8 + + 5 + 15 + + + + 20 + 16 + + 15 + 25 + + + + 30 + 20 + + 25 + 35 + + + + 40 + 24 + + 35 + 45 + + + + 50 + 24 + + 45 + 55 + + + + 60 + 24 + + 55 + 65 + + + + 70 + 16 + + 65 + 75 + + + + 82.5 + 12 + + 75 + 90 + + + + + + System + Visible + CIE Illuminant D65 1nm.ssp + ASTM E308 1931 Y.dsp + + Transmission Front + LBNL/Klems Full + LBNL/Klems Full + BTDF + +41.9042537, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +42.8763887, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +42.8763887, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +42.8763887, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +42.8763887, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +42.8763887, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +42.8763887, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +42.8763887, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +42.8763887, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +57.0215361, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +57.0215361, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +57.0215361, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +57.0215361, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +57.0215361, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +57.0215361, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +57.0215361, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +57.0215361, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +57.0215361, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +57.0215361, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +57.0215361, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +57.0215361, + + + + + + System + Visible + CIE Illuminant D65 1nm.ssp + ASTM E308 1931 Y.dsp + + Reflection Front + LBNL/Klems Full + LBNL/Klems Full + BTDF + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + + + + + + System + Visible + CIE Illuminant D65 1nm.ssp + ASTM E308 1931 Y.dsp + + Transmission Back + LBNL/Klems Full + LBNL/Klems Full + BTDF + +41.9042537, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +42.8763887, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +42.8763887, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +42.8763887, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +42.8763887, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +42.8763887, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +42.8763887, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +42.8763887, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +42.8763887, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +42.3330209, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +44.6724406, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +50.7996251, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +45.6280998, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +57.0215361, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +57.0215361, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +57.0215361, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +57.0215361, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +57.0215361, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +57.0215361, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +57.0215361, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +57.0215361, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +57.0215361, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +57.0215361, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +57.0215361, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +57.0215361, + + + + + + System + Visible + CIE Illuminant D65 1nm.ssp + ASTM E308 1931 Y.dsp + + Reflection Back + LBNL/Klems Full + LBNL/Klems Full + BTDF + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, +0, + + + + + + + diff --git a/scripts/sample_model.py b/scripts/sample_model.py index eeebb4f..b881584 100644 --- a/scripts/sample_model.py +++ b/scripts/sample_model.py @@ -24,6 +24,9 @@ generic_interior_wall, generic_interior_floor, generic_interior_ceiling, \ generic_double_pane +from honeybee_radiance.modifierset import ModifierSet +from honeybee_radiance.modifier.material import Glass, Plastic + from ladybug_geometry.geometry3d.pointvector import Point3D, Vector3D from ladybug_geometry.geometry3d.plane import Plane from ladybug_geometry.geometry3d.face import Face3D @@ -175,6 +178,42 @@ def model_complete_multi_zone_office(directory): json.dump(model.to_dict(), fp, indent=4) +def model_complete_multiroom_radiance(directory): + triple_pane = Glass.from_single_transmittance('Triple_Pane_0.35', 0.35) + first_floor = Room.from_box('First_Floor', 10, 10, 3, origin=Point3D(0, 0, 0)) + second_floor = Room.from_box('Second_Floor', 10, 10, 3, origin=Point3D(0, 0, 3)) + for face in first_floor[1:5]: + face.apertures_by_ratio(0.2, 0.01) + face.apertures[0].properties.radiance.modifier = triple_pane + for face in second_floor[1:5]: + face.apertures_by_ratio(0.2, 0.01) + + pts_1 = [Point3D(0, 0, 6), Point3D(0, 10, 6), Point3D(10, 10, 6), Point3D(10, 0, 6)] + pts_2 = [Point3D(0, 0, 6), Point3D(5, 0, 9), Point3D(5, 10, 9), Point3D(0, 10, 6)] + pts_3 = [Point3D(10, 0, 6), Point3D(10, 10, 6), Point3D(5, 10, 9), Point3D(5, 0, 9)] + pts_4 = [Point3D(0, 0, 6), Point3D(10, 0, 6), Point3D(5, 0, 9)] + pts_5 = [Point3D(10, 10, 6), Point3D(0, 10, 6), Point3D(5, 10, 9)] + face_1 = Face('AtticFace1', Face3D(pts_1)) + face_2 = Face('AtticFace2', Face3D(pts_2)) + face_3 = Face('AtticFace3', Face3D(pts_3)) + face_4 = Face('AtticFace4', Face3D(pts_4)) + face_5 = Face('AtticFace5', Face3D(pts_5)) + attic = Room('Attic', [face_1, face_2, face_3, face_4, face_5], 0.01, 1) + + mod_set = ModifierSet('Attic_Modifier_Set') + polyiso = Plastic.from_single_reflectance('PolyIso', 0.45) + mod_set.roof_ceiling_set.exterior_modifier = polyiso + attic.properties.radiance.modifier_set = mod_set + + Room.solve_adjacency([first_floor, second_floor, attic], 0.01) + + model = Model('Multi_Room_Radiance_House', [first_floor, second_floor, attic]) + + dest_file = os.path.join(directory, 'model_complete_multiroom_radiance.json') + with open(dest_file, 'w') as fp: + json.dump(model.to_dict(), fp, indent=4) + + def model_complete_patient_room(directory): pat_room_program = \ prog_type_lib.program_type_by_identifier('2013::Hospital::ICU_PatRm') @@ -421,6 +460,8 @@ def model_energy_properties_office(directory): model_complete_patient_room(sample_directory) model_complete_office_floor(sample_directory) +model_complete_multiroom_radiance(sample_directory) + model_energy_shoe_box(sample_directory) model_energy_detailed_loads(sample_directory) model_energy_fixed_interval(sample_directory) diff --git a/scripts/sample_modifier.py b/scripts/sample_modifier.py new file mode 100644 index 0000000..6f46bf3 --- /dev/null +++ b/scripts/sample_modifier.py @@ -0,0 +1,84 @@ +# coding=utf-8 +from __future__ import division + +from honeybee_radiance.modifier.material import Trans, Light, BSDF + +from honeybee_radiance.lib.modifiers import generic_wall, generic_ceiling, \ + black, generic_exterior_window, air_boundary, white_glow + +import os +import json + + +def modifier_plastic_generic_wall(directory): + dest_file = os.path.join(directory, 'modifier_plastic_generic_wall.json') + with open(dest_file, 'w') as fp: + json.dump(generic_wall.to_dict(), fp, indent=4) + + +def modifier_plastic_generic_ceiling(directory): + dest_file = os.path.join(directory, 'modifier_plastic_generic_ceiling.json') + with open(dest_file, 'w') as fp: + json.dump(generic_ceiling.to_dict(), fp, indent=4) + + +def modifier_plastic_black(directory): + dest_file = os.path.join(directory, 'modifier_plastic_black.json') + with open(dest_file, 'w') as fp: + json.dump(black.to_dict(), fp, indent=4) + + +def modifier_glass_generic_exterior_window(directory): + dest_file = os.path.join(directory, 'modifier_glass_generic_exterior_window.json') + with open(dest_file, 'w') as fp: + json.dump(generic_exterior_window.to_dict(), fp, indent=4) + + +def modifier_glass_air_boundary(directory): + dest_file = os.path.join(directory, 'modifier_glass_air_boundary.json') + with open(dest_file, 'w') as fp: + json.dump(air_boundary.to_dict(), fp, indent=4) + + +def modifier_trans_tree_foliage(directory): + tree_leaves = Trans.from_single_reflectance('Foliage_0.3', 0.3, 0.0, 0.1, 0.15, 0.15) + dest_file = os.path.join(directory, 'modifier_trans_tree_foliage.json') + with open(dest_file, 'w') as fp: + json.dump(tree_leaves.to_dict(), fp, indent=4) + + +def modifier_glow_white(directory): + dest_file = os.path.join(directory, 'modifier_glow_white.json') + with open(dest_file, 'w') as fp: + json.dump(white_glow.to_dict(), fp, indent=4) + + +def modifier_light_green_spotlight(directory): + green_spot = Light('Green_Spotlight', 0, 1, 0) + dest_file = os.path.join(directory, 'modifier_light_green_spotlight.json') + with open(dest_file, 'w') as fp: + json.dump(green_spot.to_dict(), fp, indent=4) + + +def modifier_bsdf_klemsfull(directory): + relative_path = './scripts/bsdf/klemsfull.xml' + klemsfull = BSDF(relative_path) + dest_file = os.path.join(directory, 'modifier_bsdf_klemsfull.json') + json.dumps(klemsfull.to_dict(), indent=4) + with open(dest_file, 'w') as fp: + json.dump(klemsfull.to_dict(), fp, indent=4) + + +# run all functions within the file +master_dir = os.path.split(os.path.dirname(__file__))[0] +sample_directory = os.path.join(master_dir, 'samples', 'modifier') + +modifier_plastic_generic_wall(sample_directory) +modifier_plastic_generic_ceiling(sample_directory) +modifier_plastic_black(sample_directory) +modifier_glass_generic_exterior_window(sample_directory) +modifier_glass_air_boundary(sample_directory) +modifier_trans_tree_foliage(sample_directory) +modifier_glow_white(sample_directory) +modifier_light_green_spotlight(sample_directory) +#modifier_bsdf_klemsfull(sample_directory) diff --git a/scripts/sample_modifierset.py b/scripts/sample_modifierset.py new file mode 100644 index 0000000..5894f73 --- /dev/null +++ b/scripts/sample_modifierset.py @@ -0,0 +1,51 @@ +# coding=utf-8 +from __future__ import division + +from honeybee_radiance.modifierset import ModifierSet +from honeybee_radiance.lib.modifiersets import generic_modifier_set_visible +import honeybee_radiance.lib.modifiers as modifiers + +import os +import json + + +def modifierset_abridged_complete(directory): + dest_file = os.path.join(directory, 'modifierset_abridged_complete.json') + with open(dest_file, 'w') as fp: + json.dump(generic_modifier_set_visible.to_dict(True, False), fp, indent=4) + + +def modifierset_abridged_partial_exterior(directory): + mod_set = ModifierSet('Generic_Exterior_Visible_Modifier_Set') + mod_set.wall_set.exterior_modifier = modifiers.generic_wall_exterior + mod_set.floor_set.exterior_modifier = modifiers.generic_floor_exterior + mod_set.roof_ceiling_set.exterior_modifier = modifiers.generic_roof_exterior + dest_file = os.path.join(directory, 'modifierset_abridged_partial_exterior.json') + with open(dest_file, 'w') as fp: + json.dump(mod_set.to_dict(True, True), fp, indent=4) + + +def modifierset_complete(directory): + dest_file = os.path.join(directory, 'modifierset_complete.json') + with open(dest_file, 'w') as fp: + json.dump(generic_modifier_set_visible.to_dict(False, False), fp, indent=4) + + +def modifierset_partial_exterior(directory): + mod_set = ModifierSet('Generic_Exterior_Visible_Modifier_Set') + mod_set.wall_set.exterior_modifier = modifiers.generic_wall_exterior + mod_set.floor_set.exterior_modifier = modifiers.generic_floor_exterior + mod_set.roof_ceiling_set.exterior_modifier = modifiers.generic_roof_exterior + dest_file = os.path.join(directory, 'modifierset_partial_exterior.json') + with open(dest_file, 'w') as fp: + json.dump(mod_set.to_dict(False, True), fp, indent=4) + + +# run all functions within the file +master_dir = os.path.split(os.path.dirname(__file__))[0] +sample_directory = os.path.join(master_dir, 'samples', 'modifier_set') + +modifierset_abridged_complete(sample_directory) +modifierset_abridged_partial_exterior(sample_directory) +modifierset_complete(sample_directory) +modifierset_partial_exterior(sample_directory) diff --git a/tests/test_model.py b/tests/test_model.py index 346168f..9c67158 100644 --- a/tests/test_model.py +++ b/tests/test_model.py @@ -12,6 +12,11 @@ def test_model_complete_multi_zone_office(): Model.parse_file(file_path) +def test_model_complete_multiroom_radiance(): + file_path = os.path.join(target_folder, 'model_complete_multiroom_radiance.json') + Model.parse_file(file_path) + + def test_model_complete_single_zone_office(): file_path = os.path.join(target_folder, 'model_complete_single_zone_office.json') Model.parse_file(file_path)